Skip to content

Commit f46c37e

Browse files
committed
fix: Add keystore decoding step to Android CI and release workflows
1 parent 4876353 commit f46c37e

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/android-build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
java-version: '17'
2222
distribution: 'temurin'
2323
cache: gradle
24+
25+
- name: Decode Keystore
26+
run: echo "${{ secrets.ANDROID_KEYSTORE }}" | base64 -d > app/keystore.jks
2427

2528
- name: Grant execute permission for gradlew
2629
run: chmod +x gradlew

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
java-version: '17'
2525
distribution: 'temurin'
2626
cache: gradle
27+
28+
- name: Decode Keystore
29+
run: echo "${{ secrets.ANDROID_KEYSTORE }}" | base64 -d > app/keystore.jks
2730

2831
- name: Grant execute permission for gradlew
2932
run: chmod +x gradlew

0 commit comments

Comments
 (0)