Skip to content

Commit

Permalink
Fix build config for release build
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaakko committed Nov 26, 2023
1 parent d08271b commit 2e135d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ jobs:
- name: Upload APK as an asset to the GitHub release
uses: softprops/action-gh-release@v1
with:
files: app/release/app-release.apk
files: app/build/outputs/apk/release/app-release.apk

4 changes: 3 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {

signingConfigs {
release {
storeFile file("keystore.jks")
storeFile file("../keystore.jks")
storePassword System.getenv("SIGNING_STORE_PASSWORD")
keyAlias System.getenv("SIGNING_KEY_ALIAS")
keyPassword System.getenv("SIGNING_KEY_PASSWORD")
Expand All @@ -39,6 +39,8 @@ android {

buildTypes {
release {
signingConfig signingConfigs.release

debuggable false

minifyEnabled true
Expand Down

0 comments on commit 2e135d2

Please sign in to comment.