Skip to content

chore(release): bump to v0.9.1 #8

chore(release): bump to v0.9.1

chore(release): bump to v0.9.1 #8

Workflow file for this run

name: cd
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
deploy-demo:
name: "Deploy demo app"
runs-on: ubuntu-latest
steps:
- name: "Checkout repo"
uses: actions/checkout@v2
- name: "Install Flutter"
uses: subosito/flutter-action@v1
- name: "Build demo app for web"
working-directory: demo/
run: flutter build web --release
- name: "Deploy demo app to Github Pages"
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.
TARGET_FOLDER: demo/ # Target folder within gh-pages branch
CLEAN: true # Automatically remove deleted files from the deploy branch