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:
|
2021-12-06 18:34:30 +00:00
|
|
|
- name: Checkout repository
|
2023-10-18 05:53:34 +00:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2022-03-05 17:35:20 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-12-06 18:34:30 +00:00
|
|
|
|
2021-12-06 18:19:29 +00:00
|
|
|
- name: Set up JDK
|
2024-03-14 18:33:12 +00:00
|
|
|
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
|
2022-02-17 04:43:04 +00:00
|
|
|
with:
|
2022-05-25 12:29:04 +00:00
|
|
|
distribution: temurin
|
2023-08-26 15:26:48 +00:00
|
|
|
java-version: 20
|
2021-03-18 07:03:44 +00:00
|
|
|
|
2019-12-15 21:49:18 +00:00
|
|
|
- name: Decrypt secrets
|
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 }}
|
|
|
|
|
2020-09-21 08:47:06 +00:00
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
2019-12-15 21:49:18 +00:00
|
|
|
- name: Build release app
|
2024-02-13 23:52:52 +00:00
|
|
|
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3
|
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 }}
|
2020-10-01 08:44:36 +00:00
|
|
|
with:
|
2023-01-14 13:43:40 +00:00
|
|
|
arguments: collectFreeReleaseApks collectNonFreeReleaseApks bundleFreeRelease bundleNonFreeRelease -PsentryUploadMappings
|
2022-08-30 16:38:46 +00:00
|
|
|
gradle-home-cache-cleanup: true
|
2023-07-11 01:49:06 +00:00
|
|
|
dependency-graph: generate-and-submit
|
2019-12-15 21:49:18 +00:00
|
|
|
|
|
|
|
- name: Clean secrets
|
2020-10-16 15:18:11 +00:00
|
|
|
run: scripts/signing-cleanup.sh
|
2019-12-15 21:49:18 +00:00
|
|
|
|
|
|
|
- name: Deploy snapshot
|
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 }}
|