This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
fix(deps): update dependency com.slack.lint:slack-lint-checks to v0.6… #1751
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- develop | |
permissions: | |
contents: write | |
actions: write | |
# There should only be one instance of this | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
name: Deploy snapshot builds | |
jobs: | |
deploy-release-snapshot: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK | |
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 | |
with: | |
distribution: temurin | |
java-version: 20 | |
- name: Decrypt secrets | |
run: scripts/signing-setup.sh "$ENCRYPT_KEY" | |
env: | |
ENCRYPT_KEY: ${{ secrets.ENCRYPT_KEY }} | |
- name: Copy CI gradle.properties | |
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties | |
- name: Build release app | |
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 | |
env: | |
SNAPSHOT: "true" | |
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
with: | |
arguments: collectFreeReleaseApks collectNonFreeReleaseApks bundleFreeRelease bundleNonFreeRelease -PsentryUploadMappings | |
gradle-home-cache-cleanup: true | |
dependency-graph: generate-and-submit | |
- name: Clean secrets | |
run: scripts/signing-cleanup.sh | |
- name: Deploy snapshot | |
run: scripts/deploy-snapshot.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |