Merge pull request #399 from mjaakko/dynamic_scan_frequency #587
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: Build debug APK | |
on: | |
push: | |
branches: | |
- 'master' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
matrix: | |
version: [full, fdroid] | |
name: Build debug APK (${{ matrix.version }}) | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Capitalize version name | |
id: capitalize-version | |
uses: ASzc/change-string-case-action@v6 | |
with: | |
string: ${{ matrix.version }} | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Build debug APK | |
run: ./gradlew assemble${{ steps.capitalize-version.outputs.capitalized }}Debug | |
- name: Upload debug APK as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-${{ matrix.version }}-debug.apk | |
path: app/build/outputs/apk/${{ matrix.version }}/debug/app-${{ matrix.version }}-debug.apk | |
retention-days: 1 |