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
|
|
|
|
|
|
|
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
|
2022-04-21 15:21:12 +00:00
|
|
|
uses: actions/checkout@v3.0.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
|
2022-09-26 14:57:27 +00:00
|
|
|
uses: actions/setup-java@v3.5.1
|
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
|
2022-09-22 20:24:48 +00:00
|
|
|
uses: gradle/gradle-build-action@v2.3.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:
|
2022-09-10 20:08:05 +00:00
|
|
|
arguments: collectFreeReleaseApks collectNonFreeReleaseApks collectFreeReleaseBundle collectNonFreeReleaseBundle -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 }}
|