Skip to content

Commit

Permalink
setup android signing
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Jun 26, 2024
1 parent 8acfa34 commit c6e21b4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,14 @@ jobs:
env:
NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}

- name: setup Android signing
working-directory: ./examples/api/src-tauri/gen/android
run: |
echo "keyAlias=${{ secrets.ANDROID_KEY_ALIAS }}" > keystore.properties
echo "password=${{ secrets.ANDROID_KEY_PASSWORD }}" >> keystore.properties
base64 -d <<< "${{ secrets.ANDROID_KEY_BASE64 }}" > $RUNNER_TEMP/keystore.jks
echo "storeFile=$RUNNER_TEMP/keystore.jks" >> keystore.properties
- name: build APK
working-directory: ./examples/api
run: cargo tauri android build
Expand Down

0 comments on commit c6e21b4

Please sign in to comment.