Skip to content

Commit

Permalink
Check signing multiple files continuously
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Paleologue committed Aug 13, 2021
1 parent def06be commit 373d095
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/continuous-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build -PABIS=x86_64
run: ./gradlew assembleRelease
env:
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}

- uses: r0adkll/sign-android-release@v1
name: Sign app APK
# ID used to access action output
id: sign_app
with:
releaseDirectory: app/build/outputs/apk/release
signingKeyBase64: ${{ secrets.APPLICATION_SIGNING_KEY_STORE }}
keyStorePassword: ${{ secrets.APPLICATION_SIGNING_KEY_STORE_PASSWORD }}
alias: ${{ secrets.APPLICATION_SIGNING_KEY_STORE_ALIAS }}
keyPassword: ${{ secrets.APPLICATION_SIGNING_KEY_STORE_ALIAS_PASSWORD }}

- name: Build results
run: ls app/build/outputs/apk/release

0 comments on commit 373d095

Please sign in to comment.