Skip to content

flutter_build

flutter_build #1

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: flutter_build
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: get Flutter
uses: techno-disaster/[email protected]
- name: build app
run: |
echo "build started"
&&
flutter pub get
&&
flutter build web
&&
echo "build done!"