We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7e84b3 commit 3793458Copy full SHA for 3793458
.github/workflows/deploy.yml
@@ -0,0 +1,16 @@
1
+name: gh-pages deploy
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - uses: subosito/flutter-action@v1
14
+ with:
15
+ channel: 'beta'
16
+ - uses: erickzanardo/flutter-gh-pages@v1
.github/workflows/main.yml .github/workflows/test.yml
@@ -1,13 +1,14 @@
-on: push
name: Build flutter web
+on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: subosito/flutter-action@v1
with:
channel: beta
- run: flutter config --enable-web
- run: flutter pub get
- - run: flutter build web
+ - run: flutter build web
0 commit comments