We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd0860f commit 4965051Copy full SHA for 4965051
.github/workflows/deploy.yml
@@ -6,14 +6,10 @@ jobs:
6
build:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: actions/checkout@v1.1.0
10
- - uses: subosito/flutter-action@v1.1.1
11
- with:
12
- channel: dev
13
- - run: flutter config --enable-web
+ - uses: actions/checkout@v2
+ - uses: subosito/flutter-action@v1
14
- run: cd flutter_highlight/example && flutter pub get && flutter build web
15
- - uses: peaceiris/actions-gh-pages@v2.5.1
16
- env:
17
- PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
18
- PUBLISH_BRANCH: gh-pages
19
- PUBLISH_DIR: ./flutter_highlight/example/build/web
+ - uses: peaceiris/actions-gh-pages@v3
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ publish_dir: ./flutter_highlight/example/build/web
0 commit comments