Skip to content

polish some stuff

polish some stuff #3

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Flutter
uses: subosito/[email protected]
with:
channel: 'stable'
- name: Setup Flutter
run: |
flutter config --enable-web
- name: Build web
run: |
flutter pub get
flutter build web
- name: Deploy to GH Pages
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build/web
cname: hetpatel.me