Update dependency androidx.activity:activity-compose to v1.9.3 #269
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
name: Main | |
on: | |
push: | |
branches: [ "main" ] | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
fetch-depth: 0 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Unpack keystore | |
run: echo "${{secrets.KEYSTORE}}" | base64 -d > keystore.jks | |
- name: Build | |
env: | |
SIGN_KEY_PASSWORD: ${{ secrets.SIGN_KEY_PASSWORD }} | |
run: ./gradlew build verifyPaparazziDebug | |
- name: Upload to Play Store | |
env: | |
SIGN_KEY_PASSWORD: ${{ secrets.SIGN_KEY_PASSWORD }} | |
ANDROID_PUBLISHER_CREDENTIALS: ${{ secrets.ANDROID_PUBLISHER_CREDENTIALS }} | |
run: | | |
./gradlew publishBundle | |
VERSION_NAME="$(git describe --match build --dirty)" | |
echo "::notice title=Version::Published $VERSION_NAME" | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: '**/build/test-results/**/*.xml' | |
- name: Upload screenshot deltas | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: screenshot-deltas | |
path: './**/build/paparazzi/failures/delta-*.png' | |
if-no-files-found: ignore |