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 c826529 commit c6bc899Copy full SHA for c6bc899
.github/workflows/build.yaml
@@ -0,0 +1,32 @@
1
+on:
2
+ push:
3
+ branches: [ "master" ]
4
+
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: subosito/flutter-action@v2
11
+ with:
12
+ channel: stable
13
+ flutter-version: 3.24.x
14
+ - run: flutter build web
15
+ - id: deployment
16
+ uses: actions/upload-pages-artifact@v3
17
18
+ path: build/web
19
20
+ deploy:
21
22
+ needs: build
23
+ permissions:
24
+ pages: write
25
+ id-token: write
26
+ environment:
27
+ name: github-pages
28
+ url: ${{ steps.deployment.outputs.page_url }}
29
30
+ - name: Deploy to GitHub Pages
31
+ id: deployment
32
+ uses: actions/deploy-pages@v4
0 commit comments