Skip to content

Commit

Permalink
chore: fix access to android build secrets on release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Reckless-Satoshi committed May 12, 2024
1 parent 428c838 commit e4d0ffc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ jobs:
run: |
cd mobile/android
./gradlew assembleRelease
secrets: inherit
env:
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
KEY_PASS: ${{ secrets.KEY_PASS }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@ jobs:
android-build:
uses: RoboSats/robosats/.github/workflows/android-build.yml@main
needs: [frontend-build, check-versions]
secrets:
KEYSTORE: ${{ secrets.KEYSTORE }}
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
KEY_PASS: ${{ secrets.KEY_PASS }}
KEY_STORE_PASS: ${{ secrets.KEY_STORE_PASS }}
with:
semver: ${{ needs.check-versions.outputs.semver }}

Expand Down

0 comments on commit e4d0ffc

Please sign in to comment.