-
Notifications
You must be signed in to change notification settings - Fork 1
/
cloudbuild.yaml
26 lines (25 loc) · 960 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
steps:
- name: 'gcr.io/cloud-builders/gsutil'
args: ['cp', 'gs://master_keys/line-message-yamanotenki/master.key', './config/']
# Build the container image
- name: 'gcr.io/cloud-builders/docker'
args: ['build', '-t', 'gcr.io/$PROJECT_ID/line-message-yamanotenki:$COMMIT_SHA', '.']
# Push the container image to Container Registry
- name: 'gcr.io/cloud-builders/docker'
args: ['push', 'gcr.io/$PROJECT_ID/line-message-yamanotenki:$COMMIT_SHA']
# Deploy container image to Cloud Run
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
entrypoint: gcloud
args:
- 'run'
- 'deploy'
- 'line-message-yamanotenki'
- '--image'
- 'gcr.io/$PROJECT_ID/line-message-yamanotenki:$COMMIT_SHA'
- '--region'
- 'asia-northeast1'
- '--set-env-vars'
- 'RAILS_ENV=production,RAILS_LOG_TO_STDOUT=1,OPENAI_API_KEY=$_OPENAI_API_KEY'
- '--allow-unauthenticated'
images:
- 'gcr.io/$PROJECT_ID/line-message-yamanotenki:$COMMIT_SHA'