forked from iam4x/now-deploy-preview-comment
-
Notifications
You must be signed in to change notification settings - Fork 18
37 lines (37 loc) · 1.08 KB
/
example-angular.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
name: example - angular
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
angular:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build
run: |
cd example/angular
npm install
npx ng build --prod
- uses: ./
id: now-deployment-staging
if: github.event_name == 'pull_request'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
zeit-token: ${{ secrets.ZEIT_TOKEN }}
now-org-id: ${{ secrets.NOW_ORG_ID }}
now-project-id: ${{ secrets.NOW_PROJECT_ID_ANGULAR }}
working-directory: example/angular/dist/angular
- uses: ./
id: now-deployment-production
if: github.event_name == 'push'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
zeit-token: ${{ secrets.ZEIT_TOKEN }}
now-org-id: ${{ secrets.NOW_ORG_ID }}
now-project-id: ${{ secrets.NOW_PROJECT_ID_ANGULAR }}
working-directory: example/angular/dist/angular
now-args: '--prod '