Merge branch 'master' into tex-cache

This commit is contained in:
SachinVin
2022-09-01 19:50:32 +05:30
committed by GitHub
9 changed files with 78 additions and 13 deletions

View File

@ -129,10 +129,14 @@ jobs:
- name: Deps
run: |
sudo apt-get update
sudo apt-get install ccache -y
sudo apt-get install ccache apksigner -y
- name: Build
run: ./.ci/android/build.sh
- name: Copy artifacts
- name: Copy and sign artifacts
env:
ANDROID_KEYSTORE_B64: ${{ secrets.ANDROID_KEYSTORE_B64 }}
ANDROID_KEY_ALIAS: ${{ secrets.ANDROID_KEY_ALIAS }}
ANDROID_KEYSTORE_PASS: ${{ secrets.ANDROID_KEYSTORE_PASS }}
run: ./.ci/android/upload.sh
- name: Upload
uses: actions/upload-artifact@v3
@ -153,7 +157,7 @@ jobs:
TRANSIFEX_API_TOKEN: ${{ secrets.TRANSIFEX_API_TOKEN }}
release:
runs-on: ubuntu-latest
needs: [build]
needs: [build, android]
if: ${{ startsWith(github.ref, 'refs/tags/') }}
steps:
- uses: actions/download-artifact@v3
@ -174,4 +178,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
asset_paths: '["./**/*.tar.*","./**/*.7z","./**/*.zip"]'
asset_paths: '["./**/*.tar.*","./**/*.7z","./**/*.zip","./**/*.apk","./**/*.aab"]'