Skip to content

Commit

Permalink
Setup publish to GitHub Pages (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
Feichtmeier committed Jun 27, 2022
1 parent 97b74b4 commit 3f3d639
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/publish.yml
@@ -0,0 +1,22 @@
name: Publish to GitHub Pages

on:
push:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
with:
channel: beta
- run: flutter pub get
- run: flutter test
- uses: bluefireteam/flutter-gh-pages@v7
with:
workingDir: example
baseHref: /yaru_widgets.dart/
webRenderer: canvaskit

0 comments on commit 3f3d639

Please sign in to comment.