Skip to content

Create deploy_web_preview_to_gh_pages.yml #1

Create deploy_web_preview_to_gh_pages.yml

Create deploy_web_preview_to_gh_pages.yml #1

name: Deploy to GitHub Pages
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v1
with:
flutter-version: '3.16.5'
channel: 'stable'
- name: Enable Flutter Web
run: flutter config --enable-web
- name: Install dependencies
run: flutter pub get
- name: Build
run: flutter build web --target=lib/preview.dart
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build/web
force_orphan: true
user_name: 'github-ci[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
commit_message: 'Publish to gh-pages'