Skip to content

Create build_web.yaml #1

Create build_web.yaml

Create build_web.yaml #1

Workflow file for this run

name: Flutter Web
on:
push:
branches:
- main
jobs:
build:
name: Build Web
env:
my_secret: ${{ github.token }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
- run: flutter pub get
- run: flutter build web --release
- run: |
git add .
git commit -m "build"
git push