-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (37 loc) · 977 Bytes
/
main.yml
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: dreambook_deploy
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build_webapp:
name: check flutter version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup-flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.16.1'
channel: 'stable'
- name: check-flutter-version
run: flutter --version
- name: get-packages
run: flutter pub get
- name: build web app
run: flutter build web --base-href "/dreambook/"
- name: Upload site artifact
uses: actions/upload-pages-artifact@v1
with:
path: "build/web"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1