This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
chore(deps): update kotlin and compose to v2.0.21 (#3258) #2233
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: Setup build environment | |
uses: android-password-store/android-password-store/.github/reusable-workflows/setup-gradle@develop | |
with: | |
fetch-depth: 0 | |
dependency-graph: generate-and-submit | |
- name: Decrypt secrets | |
shell: bash | |
run: scripts/signing-setup.sh "$ENCRYPT_KEY" | |
env: | |
ENCRYPT_KEY: ${{ secrets.ENCRYPT_KEY }} | |
- name: Build release app | |
shell: bash | |
run: ./gradlew collectFreeReleaseApks collectNonFreeReleaseApks bundleFreeRelease bundleNonFreeRelease -PsentryUploadMappings | |
env: | |
SNAPSHOT: "true" | |
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
- name: Clean secrets | |
shell: bash | |
run: scripts/signing-cleanup.sh | |
- name: Deploy snapshot | |
shell: bash | |
run: scripts/deploy-snapshot.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |