mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-15 09:57:04 +05:30
fix(ci): setup signing secrets in Tramline workflow
This commit is contained in:
parent
74a7835a53
commit
3fc0f891d4
1 changed files with 6 additions and 1 deletions
7
.github/workflows/tramline-release.yml
vendored
7
.github/workflows/tramline-release.yml
vendored
|
@ -32,8 +32,13 @@ jobs:
|
||||||
gradle-home-cache-cleanup: true
|
gradle-home-cache-cleanup: true
|
||||||
|
|
||||||
- name: Build release app
|
- name: Build release app
|
||||||
run: ./gradlew --no-configuration-cache --stacktrace collectReleaseBundle
|
run: |
|
||||||
|
./scripts/setup-age.sh
|
||||||
|
./scripts/signing-setup.sh "$AGE_SECRET_KEY"
|
||||||
|
./gradlew --no-configuration-cache --stacktrace collectReleaseBundle
|
||||||
|
./scripts/signing-cleanup.sh
|
||||||
env:
|
env:
|
||||||
|
AGE_SECRET_KEY: ${{ secrets.AGE_SECRET_KEY }}
|
||||||
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
|
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
|
||||||
ORG_GRADLE_PROJECT_VERSION_NAME: ${{ github.event.inputs.versionName }}
|
ORG_GRADLE_PROJECT_VERSION_NAME: ${{ github.event.inputs.versionName }}
|
||||||
ORG_GRADLE_PROJECT_VERSION_CODE: ${{ github.event.inputs.versionCode }}
|
ORG_GRADLE_PROJECT_VERSION_CODE: ${{ github.event.inputs.versionCode }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue