forked from organicmaps/organicmaps
[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:
parent
39326503b8
commit
6dbec0683c
2 changed files with 17 additions and 9 deletions
18
.github/workflows/android-release-metadata.yaml
vendored
18
.github/workflows/android-release-metadata.yaml
vendored
|
@ -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
|
||||
|
|
8
.github/workflows/android-release.yaml
vendored
8
.github/workflows/android-release.yaml
vendored
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue