Skip to content

Commit

Permalink
:cri10:
Browse files Browse the repository at this point in the history
  • Loading branch information
IndusAryan committed Jul 15, 2024
1 parent 54d4f36 commit 2ce0b29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
- name: Debug Base64 String
run: |
echo "${{ secrets.SIGNING_KEY_STORE_BASE64 }}"
echo "${{ secrets.SIGNING_KEY_STORE_BASE64 }}"
- name: Decode Keystore
run: |
chmod 600
echo "${{ secrets.SIGNING_KEY_STORE_BASE64 }}" | base64 --decode > "${{ secrets.SIGNING_KEY_STORE_PATH }}"
ls -l ${{ secrets.SIGNING_KEY_STORE_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android {

signingConfigs {
create("release") {
storeFile = file("/home/runner/work/Veena/Veena/keystore.jks" ?: "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 Down

0 comments on commit 2ce0b29

Please sign in to comment.