Changing of path of keystore location

This commit is contained in:
Dmitriy Karpushin 2023-01-18 11:06:58 +03:00
parent 3c6280c419
commit bc69524654

View file

@ -85,9 +85,21 @@ jobs:
- name: 'Get sources'
uses: actions/checkout@v3
with:
path: main
submodules: 'true'
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'
uses: hendrikmuhs/ccache-action@v1.2
@ -97,17 +109,6 @@ jobs:
distribution: 'temurin'
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'
run: |
cd ..