Skip to content

Separate workflows

Separate workflows #1

Workflow file for this run

name: Build Flutter App
run-name: ${{ github.actor }} is building the Android app bundle 🚀
# on:
# pull_request:
# types:
# - opened
# - reopened
# - synchronize
# - ready_for_review
# branches:
# - 'main'
# paths-ignore:
# - '**.md'
# - 'doc/**'
# - '.git/'
# - '.vscode/'
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Build AppBundle
uses: actions/checkout@v3
uses: actions/setup-java@v2
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: '11'
uses: subosito/flutter-action@v2
with:
channel: 'stable'
run: flutter pub get
run: flutter build appbundle
with:
name: release
path: build/app/outputs/bundle/release/app-release.aab
# - name: Create Release
# uses: ncipollo/[email protected]