Adapt example's web index.html #2
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: Deploy to web | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
deploy-for-web: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- run: flutter config --enable-web | |
- run: flutter pub get | |
- name: Build for web | |
working-directory: example/ | |
run: flutter build web --release | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
BRANCH: gh-pages # The branch the action should deploy to. | |
FOLDER: example/build/web # The folder the action should deploy. | |
CLEAN: true # Automatically remove deleted files from the deploy branch |