chore(deps): update dependency androidx.navigation:navigation-compose… #156
Workflow file for this run
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: Android CI | |
on: | |
push: | |
branches: [ "**" ] | |
paths-ignore: | |
- '**/*.md' | |
pull_request: | |
branches: [ "**" ] | |
paths-ignore: | |
- '**/*.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build SwUpdater | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'oracle' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Validate Gradle wrapper | |
uses: gradle/actions/wrapper-validation@v4 | |
- name: Build SwUpdater Release | |
run: ./gradlew assembleRelease | |
- name: Upload release app | |
uses: actions/upload-artifact@v4 | |
with: | |
name: swupdater-release | |
path: app/build/outputs/apk/release/ |