chore(release): bump to v0.9.1 #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |