Skip to content

Commit

Permalink
Merge pull request #2702 from niyajali/Attemp#3-fix-build-error
Browse files Browse the repository at this point in the history
Attempt#3 - Fixing Workflow Error
  • Loading branch information
niyajali authored Sep 6, 2024
2 parents bb0effa + 4865e04 commit a18eb83
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/onPush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:

- name: Build Release
env:
KEYSTORE_PATH: ${{ secrets.KEYSTORE_NAME }}
KEYSTORE_PASSWORD: ${{ secrets.ORIGINAL_KEYSTORE_FILE_PASSWORD }}
KEYSTORE_ALIAS: ${{ secrets.ORIGINAL_KEYSTORE_ALIAS }}
KEYSTORE_ALIAS_PASSWORD: ${{ secrets.ORIGINAL_KEYSTORE_ALIAS_PASSWORD }}
Expand Down Expand Up @@ -138,6 +139,7 @@ jobs:

- name: Build Release
env:
KEYSTORE_PATH: ${{ secrets.KEYSTORE_NAME }}
KEYSTORE_PASSWORD: ${{ secrets.UPLOAD_KEYSTORE_FILE_PASSWORD }}
KEYSTORE_ALIAS: ${{ secrets.UPLOAD_KEYSTORE_ALIAS }}
KEYSTORE_ALIAS_PASSWORD: ${{ secrets.UPLOAD_KEYSTORE_ALIAS_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ captures/
app/app.iml
app/manifest-merger-release-report.txt

#*.keystore
release_keystore.keystore

version.txt

Expand Down
2 changes: 1 addition & 1 deletion androidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ android {

signingConfigs {
create("release") {
storeFile = file(System.getenv("KEYSTORE_PATH") ?: "release_keystore.keystore")
storeFile = file(System.getenv("KEYSTORE_PATH") ?: "debug_keystore.jks")
storePassword = System.getenv("KEYSTORE_PASSWORD") ?: "mifos1234"
keyAlias = System.getenv("KEYSTORE_ALIAS") ?: "mifos-mobile"
keyPassword = System.getenv("KEYSTORE_ALIAS_PASSWORD") ?: "mifos1234"
Expand Down
File renamed without changes.

0 comments on commit a18eb83

Please sign in to comment.