-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcloudbuild.yaml
36 lines (36 loc) · 988 Bytes
/
cloudbuild.yaml
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
steps:
# pull the container image if it is already built
- name: 'gcr.io/cloud-builders/docker'
entrypoint: 'bash'
args:
- '-c'
- 'docker pull gcr.io/$PROJECT_ID/appcicd:latest || exit 0'
# build the container image
- name: 'gcr.io/cloud-builders/docker'
args:
- 'build'
- '-t'
- 'gcr.io/$PROJECT_ID/appcicd:latest'
- '-t'
- 'gcr.io/$PROJECT_ID/appcicd:$COMMIT_SHA'
- '--cache-from'
- 'gcr.io/$PROJECT_ID/appcicd:latest'
- '.'
# push the container image to Container Registry with all tags
- name: 'gcr.io/cloud-builders/docker'
args:
- 'push'
- 'gcr.io/$PROJECT_ID/appcicd'
# deploy container image to Cloud Run
- name: 'gcr.io/cloud-builders/gcloud'
args:
- 'run'
- 'deploy'
- 'appml'
- '--image'
- 'gcr.io/$PROJECT_ID/appcicd:latest'
- '--region'
- 'us-central1'
- '--platform'
- 'managed'
- '--allow-unauthenticated'