-
-
Notifications
You must be signed in to change notification settings - Fork 105
50 lines (46 loc) · 1.35 KB
/
web_deploy.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
49
50
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Deploy web app
on:
push:
branches: [ main ]
paths:
- 'lib/**'
- 'packages/**'
- 'web/**'
- '.github/workflows/web_deploy.yml'
- 'pubspec.yaml'
pull_request:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache build dir
uses: actions/cache@v2
with:
path: build
key: ${{ runner.os }}-build
- uses: subosito/flutter-action@v1
with:
channel: 'master'
- run: flutter pub get
- run: flutter build web
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: './build/web'
production-branch: master
production-deploy: true
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
enable-pull-request-comment: false
enable-commit-comment: true
overwrites-pull-request-comment: true
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 1