Update all dependencies #1167
This file contains hidden or 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: ComposeStarter | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'ComposeStarter/**' | |
| pull_request: | |
| paths: | |
| - 'ComposeStarter/**' | |
| env: | |
| SAMPLE_PATH: ComposeStarter | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 17 | |
| - name: Generate cache key | |
| run: ./scripts/checksum.sh $SAMPLE_PATH checksum.txt | |
| - uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.gradle/caches/modules-* | |
| ~/.gradle/caches/jars-* | |
| ~/.gradle/caches/build-cache-* | |
| key: gradle-${{ hashFiles('checksum.txt') }} | |
| - name: Build project | |
| working-directory: ${{ env.SAMPLE_PATH }} | |
| run: ./gradlew check --stacktrace | |
| - name: Upload build outputs (APKs) | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: build-outputs | |
| path: | | |
| ${{ env.SAMPLE_PATH }}/app/build/outputs | |
| - name: Upload build reports | |
| if: always() | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: build-reports | |
| path: | | |
| ${{ env.SAMPLE_PATH }}/app/build/reports | |
| apk: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 17 | |
| - name: Generate cache key | |
| run: ./scripts/checksum.sh $SAMPLE_PATH checksum.txt | |
| - uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.gradle/caches/modules-* | |
| ~/.gradle/caches/jars-* | |
| ~/.gradle/caches/build-cache-* | |
| key: gradle-${{ hashFiles('checksum.txt') }} | |
| - name: Build project | |
| working-directory: ${{ env.SAMPLE_PATH }} | |
| run: ./gradlew app:assembleRelease | |
| - name: Upload APK | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: App | |
| path: ${{ env.SAMPLE_PATH }}/app/build/outputs/apk/release/app-release.apk |