We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35dc549 commit 2db8868Copy full SHA for 2db8868
.github/workflows/deploy.yml
@@ -0,0 +1,30 @@
1
+name: Deploy Yell Lander Web to GitHub Pages
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
7
+jobs:
8
+ build-and-deploy:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v3
14
15
+ - name: Set up Flutter
16
+ uses: subosito/flutter-action@v2
17
+ with:
18
+ flutter-version: '3.7.2'
19
20
+ - name: Install dependencies
21
+ run: flutter pub get
22
23
+ - name: Build web
24
+ run: flutter build web
25
26
+ - name: Deploy to GitHub Pages
27
+ uses: peaceiris/actions-gh-pages@v3
28
29
+ github_token: ${{ secrets.GITHUB_TOKEN }}
30
+ publish_dir: build/web
PP.md doc/PRIVACY.mdPP.md renamed to doc/PRIVACY.md
PP.html web/privacy.htmlPP.html renamed to web/privacy.html
0 commit comments