-
-
Notifications
You must be signed in to change notification settings - Fork 14
48 lines (38 loc) · 1.13 KB
/
web.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: web
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create secrets.json from repository secret
run: echo $SECRETS_JSON_BASE64 | base64 -d > assets/secrets.json
env:
SECRETS_JSON_BASE64: ${{ secrets.SECRETS_JSON_BASE64 }}
- name: Install flutter
uses: subosito/flutter-action@v1.5.3
with:
flutter-version: '2.10.1'
- run: flutter config --enable-web
- run: flutter pub get
- run: flutter pub run build_runner build
- run: flutter build web --base-href /
- name: Archive Production Artifact
uses: actions/upload-artifact@master
with:
name: web-build
path: build/web
- name: Download Artifact
uses: actions/download-artifact@master
with:
name: web-build
- name: Deploy to Github Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build/web
cname: stops.jeffsieu.com