-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcloudbuild-develop.yml
More file actions
37 lines (36 loc) · 1.15 KB
/
cloudbuild-develop.yml
File metadata and controls
37 lines (36 loc) · 1.15 KB
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
steps:
- name: "gcr.io/cloud-builders/gcloud"
args:
- functions
- deploy
- bitbucketevents
- --source=https://source.developers.google.com/projects/horvbot/repos/github_dr-horv_horvbot/moveable-aliases/develop/paths/src/bitbucketevents/
- --trigger-http
- --runtime=nodejs12
- --region=europe-west1
- --entry-point=handler
waitFor: ["-"]
- name: "gcr.io/cloud-builders/gcloud"
args:
- functions
- deploy
- slackevents
- --source=https://source.developers.google.com/projects/horvbot/repos/github_dr-horv_horvbot/moveable-aliases/develop/paths/src/slackevents/
- --trigger-http
- --runtime=nodejs18
- --region=europe-west1
- --entry-point=handler
waitFor: ["-"]
- name: gcr.io/cloud-builders/gcloud
args:
- functions
- deploy
- githubevents
- >-
--source=https://source.developers.google.com/projects/horvbot/repos/github_dr-horv_horvbot/moveable-aliases/develop/paths/src/githubevents/
- --trigger-http
- --runtime=nodejs18
- --region=europe-west1
- --entry-point=handler
waitFor:
- '-'