[ci] Fix Android pipeline

Couldn't follow symbolic link 'android/src/google/play/listings/en-US/graphics'

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2021-08-19 09:37:00 +03:00
parent 39326503b8
commit 6dbec0683c
2 changed files with 17 additions and 9 deletions

View file

@ -8,13 +8,21 @@ jobs:
runs-on: ubuntu-latest
environment: production
steps:
- name: Checkout
- name: Checkout sources
uses: actions/checkout@v2
- name: Parallel submodules checkout
shell: bash
run: git submodule update --init --recursive --jobs=$(($(nproc) * 2))
- name: Checkout screenshots
uses: actions/checkout@v2
with:
repository: ${{ secrets.SCREENSHOTS_REPO }}
ssh-key: ${{ secrets.SCREENSHOTS_SSH_KEY }}
ref: master
path: screenshots
- name: Checkout private keys
uses: actions/checkout@v2
with:
@ -29,14 +37,6 @@ jobs:
./configure.sh ./private.git
rm -rf ./private.git
- name: Checkout screenshots
uses: actions/checkout@v2
with:
repository: ${{ secrets.SCREENSHOTS_REPO }}
ssh-key: ${{ secrets.SCREENSHOTS_SSH_KEY }}
ref: master
path: screenshots
- name: Upload
shell: bash
run: ./gradlew publishGoogleReleaseListing

View file

@ -35,6 +35,14 @@ jobs:
shell: bash
run: git submodule update --init --recursive --jobs=$(($(nproc) * 2))
- name: Checkout screenshots
uses: actions/checkout@v2
with:
repository: ${{ secrets.SCREENSHOTS_REPO }}
ssh-key: ${{ secrets.SCREENSHOTS_SSH_KEY }}
ref: master
path: screenshots
- name: Checkout private keys
uses: actions/checkout@v2
with: