chore(deps): Bump share_plus from 9.0.0 to 10.0.1 #764
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: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build_apk: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: "21.x" | |
cache: "gradle" | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
- uses: actions/cache@v4 | |
with: | |
path: /opt/hostedtoolcache/flutter | |
key: flutter-install-cache | |
- name: Setup Flutter | |
run: | | |
flutter config --no-analytics | |
flutter pub get | |
dart pub global activate script_runner | |
scr build | |
- name: Build APKs | |
run: flutter build apk --build-number $(printf '%(%Y%m%d)T\n' -1) --debug | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: APK | |
path: ./build/app/outputs/apk/debug/app-debug.apk | |
retention-days: 30 |