CI: android: Sign and publish apk

This commit is contained in:
SachinVin 2022-08-24 22:12:21 +05:30
parent ddc802d2b4
commit b52ae4388b
2 changed files with 18 additions and 4 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, macos]
needs: [build, macos, 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"]'