Changing of path of keystore location
This commit is contained in:
parent
3c6280c419
commit
bc69524654
1 changed files with 12 additions and 11 deletions
23
.github/workflows/tag-deploy.yml
vendored
23
.github/workflows/tag-deploy.yml
vendored
|
@ -85,9 +85,21 @@ jobs:
|
||||||
- name: 'Get sources'
|
- name: 'Get sources'
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
|
path: main
|
||||||
submodules: 'true'
|
submodules: 'true'
|
||||||
fetch-depth: 10
|
fetch-depth: 10
|
||||||
|
|
||||||
|
- name: 'Preparations before keystore fetching'
|
||||||
|
run: |
|
||||||
|
mkdir keystore
|
||||||
|
|
||||||
|
- name: 'Getting keystore'
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
repository: amnezia-vpn/amnezia-android-certificates
|
||||||
|
ssh-key: ${{ secrets.ANDROID_CERTS_SSH_PRIVATE_KEY }}
|
||||||
|
path: keystore
|
||||||
|
|
||||||
- name: 'Setup ccache'
|
- name: 'Setup ccache'
|
||||||
uses: hendrikmuhs/ccache-action@v1.2
|
uses: hendrikmuhs/ccache-action@v1.2
|
||||||
|
|
||||||
|
@ -97,17 +109,6 @@ jobs:
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: '11'
|
java-version: '11'
|
||||||
|
|
||||||
- name: 'Preparations before keystore fetching'
|
|
||||||
run: |
|
|
||||||
mkdir ${{ runner.temp }}/keystore
|
|
||||||
|
|
||||||
- name: 'Getting keystore'
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
repository: amnezia-vpn/amnezia-android-certificates
|
|
||||||
ssh-key: ${{ secrets.ANDROID_CERTS_SSH_PRIVATE_KEY }}
|
|
||||||
path: ${{ runner.temp }}/keystore
|
|
||||||
|
|
||||||
- name: 'Build project'
|
- name: 'Build project'
|
||||||
run: |
|
run: |
|
||||||
cd ..
|
cd ..
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue