chore: fix access to android build secrets on release workflow

This commit is contained in:
Reckless_Satoshi 2024-05-12 22:08:59 +01:00
parent 428c838967
commit 5188689c31
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
2 changed files with 10 additions and 0 deletions

View File

@ -6,6 +6,15 @@ on:
semver:
required: true
type: string
secrets:
KEYSTORE:
required: true
KEY_ALIAS:
required: true
KEY_PASS:
required: true
KEY_STORE_PASS:
required: true
push:
branches: [ "main" ]
paths: [ "mobile", "frontend" ]

View File

@ -71,6 +71,7 @@ jobs:
android-build:
uses: RoboSats/robosats/.github/workflows/android-build.yml@main
needs: [frontend-build, check-versions]
secrets: inherit
with:
semver: ${{ needs.check-versions.outputs.semver }}