Skip to content

Commit

Permalink
Keystore
Browse files Browse the repository at this point in the history
  • Loading branch information
rbro112 committed Aug 29, 2024
1 parent f8cb18c commit 9cbabb0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/android_release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ jobs:
- name: Build AAB
env:
RUNNING_ENV: release_workflow
DECODED_KEYSTORE_PATH: ${{ secrets.ANDROID_RELEASE_KEYSTORE_PATH }}
RELEASE_KEY_ALIAS: ${{ secrets.ANDROID_RELEASE_KEY_ALIAS }}
RELEASE_KEY_PASSWORD: ${{ secrets.ANDROID_RELEASE_KEY_PASSWORD }}
RELEASE_STORE_PASSWORD: ${{ secrets.ANDROID_RELEASE_STORE_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ android {
signingConfigs {
if (runningEnv == "release_workflow") {
create("release") {
storeFile = file(System.getenv("DECODED_KEYSTORE_PATH"))
storeFile = file(System.getenv("keystore.jks"))
keyAlias = System.getenv("RELEASE_KEY_ALIAS")
keyPassword = System.getenv("RELEASE_KEY_PASSWORD")
storePassword = System.getenv("RELEASE_STORE_PASSWORD")
Expand Down

0 comments on commit 9cbabb0

Please sign in to comment.