-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuddy.yml
44 lines (44 loc) · 1.38 KB
/
buddy.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
- pipeline: 'deploy:staging'
trigger_mode: ON_EVERY_PUSH
ref_name: master
ref_type: BRANCH
target_site_url: 'https://staging.a11y.merlinnot.com'
clone_depth: 1
actions:
- action: >-
Execute: firebase deploy --token "$FIREBASE_TOKEN" --project
com-merlinnot-a11y-staging
type: BUILD
working_directory: /buddy/a11yportal
docker_image_name: library/node
docker_image_tag: '10'
execute_commands:
- >-
firebase deploy --token "$FIREBASE_TOKEN" --project
com-merlinnot-a11y-staging
setup_commands:
- npm install -g firebase-tools
mount_filesystem_path: /buddy/a11yportal
shell: BASH
trigger_condition: ALWAYS
- pipeline: 'deploy:production'
trigger_mode: ON_EVERY_PUSH
ref_name: refs/tags/*
ref_type: WILDCARD
target_site_url: 'https://a11y.merlinnot.com'
clone_depth: 1
actions:
- action: >-
Execute: firebase deploy --token "$FIREBASE_TOKEN"' --project
com-merlinnot-a11y
type: BUILD
working_directory: /buddy/a11yportal
docker_image_name: library/node
docker_image_tag: '10'
execute_commands:
- firebase deploy --token "$FIREBASE_TOKEN" --project com-merlinnot-a11y
setup_commands:
- npm install -g firebase-tools
mount_filesystem_path: /buddy/a11yportal
shell: BASH
trigger_condition: ALWAYS