Bump back_button_interceptor from 8.0.0 to 8.0.3 #249
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: Build Sweyer executables | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- master | |
- 'releases/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📚 Git Checkout | |
uses: actions/checkout@v4 | |
- name: 🐦 Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: 3.22.2 | |
channel: stable | |
cache: true | |
- name: 📦 Install Dependencies | |
shell: bash | |
run: | | |
flutter pub global activate very_good_cli | |
very_good packages get --recursive | |
- name: 💾 Cache Gradle | |
uses: actions/cache@v4 | |
with: | |
key: gradle | |
path: /home/runner/.gradle | |
- name: 🔨 Build Apk | |
shell: bash | |
run: | | |
export JAVA_HOME="$JAVA_HOME_17_X64" | |
flutter build apk --profile | |
- name: 📁 Save executables | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Android Apk | |
path: build/app/outputs/flutter-apk/app-profile.apk |