Skip to content

Commit

Permalink
Don't require the env var
Browse files Browse the repository at this point in the history
  • Loading branch information
microbit-matt-hillsdon committed Apr 5, 2024
1 parent d4d5dc6 commit 383685f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {
release {
keyAlias=System.getenv('SIGNING_KEY_ALIAS')
keyPassword=System.getenv('SIGNING_KEY_PASSWORD')
storeFile=file(System.getenv('SIGNING_STORE_FILE'))
storeFile=System.getenv('SIGNING_STORE_FILE') ? file(System.getenv('SIGNING_STORE_FILE')) : null
storePassword=System.getenv('SIGNING_STORE_PASSWORD')
}
}
Expand Down

0 comments on commit 383685f

Please sign in to comment.