Skip to content

Bump to 0.4.0

Bump to 0.4.0 #11

Workflow file for this run

name: Deploy demo
on:
push:
tags:
- '*'
jobs:
deploy-for-web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
with:
channel: stable
- run: flutter config --enable-web
- run: flutter pub get
- name: Build for web
working-directory: demo/
run: flutter build web --release
- name: Deploy
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: demo/build/web # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch