Reviewer Job #9
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: Reviewer Job | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.19.3' | |
channel: 'stable' | |
cache: true | |
- name: Install dependencies | |
run: flutter pub get | |
#- uses: invertase/[email protected] | |
# with: | |
# (Optional) Treat info level issues as fatal. | |
# fatal-infos: false | |
# (Optional) Treat warning level issues as fatal | |
# (defaults to true). | |
# fatal-warnings: false | |
- name: Play-Free release | |
run: flutter build apk --flavor dev --target lib/main_dev.dart --build-name ${{ env.VersionName }} --build-number ${{github.run_number}} |