Skip to content

Update CHANGELOG with new features and fixes #6

Update CHANGELOG with new features and fixes

Update CHANGELOG with new features and fixes #6

Workflow file for this run

name: Deploy Web
on:
push:
branches: [main, master]
workflow_dispatch:
permissions:
contents: write
concurrency:
group: deploy-web-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: "3.41.2"
channel: "stable"
cache: true
- name: Install dependencies
run: flutter pub get
- name: Build web (WASM)
run: |
flutter build web --release --wasm \
--base-href /Lrc-R/ \
--tree-shake-icons \
--pwa-strategy=offline-first
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build/web
publish_branch: gh-pages
force_orphan: true