Skip to content

Commit

Permalink
More GitHub actions work.
Browse files Browse the repository at this point in the history
  • Loading branch information
zond committed Mar 5, 2020
1 parent f90eb32 commit 049726e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
env:
KEYSTORE: signing.keystore
KEY_ALIAS: mykey
KEY_PASSWORD: ${{ secrets.keystorePassword }}
KEYSTORE_PASSWORD: ${{ secrets.keystorePassword }}
run: ./gradlew assembleRelease

6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ android {
signingConfigs {
release {
storeFile file(System.getenv("KEYSTORE"))
storePassword System.getenv("KEYSTORE_PASSWORD")
keyAlias System.getenv("KEY_ALIAS")
keyPassword System.getenv("KEY_PASSWORD")
storePassword System.getenv("KEYSTORE_PASSWORD")
keyAlias System.getenv("KEY_ALIAS")
keyPassword System.getenv("KEY_PASSWORD")
}
}
}
Expand Down

0 comments on commit 049726e

Please sign in to comment.