Skip to content

Commit 0c4754f

Browse files
committed
fix final
1 parent c12ffc7 commit 0c4754f

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/firebase-hosting-merge.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
- run: flutter build web
14+
- run: >-
15+
sudo snap install flutter --classic && flutter channel beta && flutter
16+
config --enable-web && flutter build web
1517
- uses: FirebaseExtended/action-hosting-deploy@v0
1618
with:
1719
repoToken: '${{ secrets.GITHUB_TOKEN }}'

.github/workflows/firebase-hosting-pull-request.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v2
11-
- run: flutter build web
11+
- run: >-
12+
sudo snap install flutter --classic && flutter channel beta && flutter
13+
config --enable-web && flutter build web
1214
- uses: FirebaseExtended/action-hosting-deploy@v0
1315
with:
1416
repoToken: '${{ secrets.GITHUB_TOKEN }}'

firebase.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"hosting": {
3-
"public": " build/web",
3+
"public": "build/web",
44
"ignore": [
55
"firebase.json",
66
"**/.*",

0 commit comments

Comments
 (0)