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-04-13 17:22:28 +00:00
|
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
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
|
2023-03-27 19:27:47 +00:00
|
|
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
2022-02-17 04:43:04 +00:00
|
|
|
with:
|
2022-05-25 12:29:04 +00:00
|
|
|
distribution: temurin
|
2022-09-05 08:21:05 +00:00
|
|
|
java-version: 18
|
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
|
2023-04-13 03:05:59 +00:00
|
|
|
uses: gradle/gradle-build-action@5056fa9d50478a14af3c9925c12ca02318659d3e # v2.4.1
|
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
|
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 }}
|