Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
quetool committed Aug 30, 2024
1 parent 595494a commit 893aa4c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release_dapp_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Add Keystore file
working-directory: example/dapp/android
run: echo ${{ secrets.KEYSTORE }} | base64 --decode >> app/debug.keystore
run: echo "${{ secrets.KEYSTORE }}" | base64 --decode >> app/debug.keystore

# Fastlane
- name: Fastlane
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_dapp_android_internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Add Keystore file
working-directory: example/dapp/android
run: echo ${{ secrets.KEYSTORE }} | base64 --decode >> app/debug.keystore
run: echo "${{ secrets.KEYSTORE }}" | base64 --decode >> app/debug.keystore

# Fastlane
- name: Fastlane
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_wallet_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Add Keystore file
working-directory: example/wallet/android
run: echo ${{ secrets.KEYSTORE }} | base64 --decode >> app/debug.keystore
run: echo "${{ secrets.KEYSTORE }}" | base64 --decode >> app/debug.keystore

# Fastlane
- name: Fastlane
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_wallet_android_internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Add Keystore file
working-directory: example/wallet/android
run: echo ${{ secrets.KEYSTORE }} | base64 --decode >> app/debug.keystore
run: echo "${{ secrets.KEYSTORE }}" | base64 --decode >> app/debug.keystore

# Fastlane
- name: Fastlane
Expand Down

0 comments on commit 893aa4c

Please sign in to comment.