Skip to content

chore(deps): bump actions/checkout from 4 to 5 (#20) #44

chore(deps): bump actions/checkout from 4 to 5 (#20)

chore(deps): bump actions/checkout from 4 to 5 (#20) #44

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
defaults:
run:
working-directory: example
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter pub get
- run: flutter build web --web-renderer canvaskit --base-href="/awaitable_button/"
- name: Deploy to GithubPages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./example/build/web