Skip to content

Create CODEOWNERS (#13) #36

Create CODEOWNERS (#13)

Create CODEOWNERS (#13) #36

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@v4
- 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@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./example/build/web