flutter-build-web
ActionsTags
(2)name: Build and distribute
on:
push:
branches:
- main
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# You can install flutter prior to using this action. This action won't install flutter then.
- uses: cedvdb/action-flutter-build-web@v1
with:
build-cmd: flutter build web --release
working-directory: ./
- name: Archive Production artifact
uses: actions/upload-artifact@v2
with:
name: release
path: build/web
flutter-build-web is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.