2019-12-15 21:49:18 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-06-24 18:51:05 +00:00
|
|
|
- develop
|
2019-12-15 21:49:18 +00:00
|
|
|
|
2022-11-24 19:50:13 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
actions: write
|
|
|
|
|
2022-11-28 07:42:48 +00:00
|
|
|
# There should only be one instance of this
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}
|
2022-12-08 13:19:24 +00:00
|
|
|
cancel-in-progress: true
|
2022-11-28 07:42:48 +00:00
|
|
|
|
2019-12-15 21:49:18 +00:00
|
|
|
name: Deploy snapshot builds
|
|
|
|
jobs:
|
|
|
|
deploy-release-snapshot:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
|
|
|
steps:
|
2024-04-13 09:15:08 +00:00
|
|
|
- name: Setup build environment
|
|
|
|
uses: android-password-store/android-password-store/.github/reusable-workflows/setup-gradle@develop
|
2022-03-05 17:35:20 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2024-04-13 09:15:08 +00:00
|
|
|
dependency-graph: generate-and-submit
|
2021-03-18 07:03:44 +00:00
|
|
|
|
2019-12-15 21:49:18 +00:00
|
|
|
- name: Decrypt secrets
|
2024-04-13 09:15:08 +00:00
|
|
|
shell: bash
|
2020-10-16 15:18:11 +00:00
|
|
|
run: scripts/signing-setup.sh "$ENCRYPT_KEY"
|
2019-12-15 21:49:18 +00:00
|
|
|
env:
|
|
|
|
ENCRYPT_KEY: ${{ secrets.ENCRYPT_KEY }}
|
|
|
|
|
|
|
|
- name: Build release app
|
2024-04-13 09:15:08 +00:00
|
|
|
shell: bash
|
|
|
|
run: ./gradlew collectFreeReleaseApks collectNonFreeReleaseApks bundleFreeRelease bundleNonFreeRelease -PsentryUploadMappings
|
2019-12-15 21:49:18 +00:00
|
|
|
env:
|
|
|
|
SNAPSHOT: "true"
|
2022-02-20 13:28:35 +00:00
|
|
|
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
|
2022-03-13 12:39:15 +00:00
|
|
|
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
2019-12-15 21:49:18 +00:00
|
|
|
|
|
|
|
- name: Clean secrets
|
2024-04-13 09:15:08 +00:00
|
|
|
shell: bash
|
2020-10-16 15:18:11 +00:00
|
|
|
run: scripts/signing-cleanup.sh
|
2019-12-15 21:49:18 +00:00
|
|
|
|
|
|
|
- name: Deploy snapshot
|
2024-04-13 09:15:08 +00:00
|
|
|
shell: bash
|
2020-10-16 15:18:11 +00:00
|
|
|
run: scripts/deploy-snapshot.sh
|
2022-03-05 18:31:05 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|