Skip to content

Commit

Permalink
fixing gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
octoshrimpy committed Feb 26, 2024
1 parent f1d74af commit df17d49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presentation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ android {
def keystorePropsFile = rootProject.file('./.gradle/.gradlerc')
storeFile file('./my-release-key.keystore')
keyAlias 'quik_release'
if (keystorePropsFile.exists()) {
if (keystorePropsFile.exists() && System.getenv("CI") != "true" ) {
keystoreProps.load(new FileInputStream(keystorePropsFile))
} else {
throw new GradleException("Keystore properties file not found.")
Expand Down

0 comments on commit df17d49

Please sign in to comment.