Bump com.android.application from 8.13.1 to 9.0.0 #433
Workflow file for this run
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: continuous | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| - name: Build basic APK with Gradle | |
| run: ./gradlew assembleBasicDebug | |
| - name: Build photos APK with Gradle | |
| run: ./gradlew assemblePhotosDebug | |
| - name: Build photosonly APK with Gradle | |
| run: ./gradlew assemblePhotosonlyDebug | |
| - name: Upload APKs | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: APKs | |
| path: app/build/outputs/apk/**/debug/*.apk | |
| fastlane-validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ashutoshgngwr/validate-fastlane-supply-metadata@v2 |