Skip to content

change branch

change branch #1

Workflow file for this run

name: Flutter Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: "12.x"
- uses: subosito/flutter-action@v1
with:
channel: "stable"
- run: flutter pub get
- run: flutter format --set-exit-if-changed.
- run: flutter analyze .
- run: build apk --flavor production -t lib/main_production.dart
- uses: actions/upload-artifact@v1
with:
name: release-apk
path: build/app/outputs/apk/production/release/app-production-release.apk