Merge pull request #186 from carstenhag/task/update-gradle-specify-hash #271
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: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'gradle' | |
- name: Build with Gradle | |
run: ./gradlew build --warning-mode all --no-daemon --parallel | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: apks | |
path: app/build/outputs/apk |