steps: # Build the container image - name: 'gcr.io/cloud-builders/docker' args: ['build', '-t', 'gcr.io/multichannel-chat-widget/backend:$COMMIT_SHA', '.'] # Push the container image to Container Registry - name: 'gcr.io/cloud-builders/docker' args: ['push', 'gcr.io/multichannel-chat-widget/backend:$COMMIT_SHA'] # Deploy container image to Cloud Run - name: 'gcr.io/google.com/cloudsdktool/cloud-sdk' entrypoint: gcloud args: - 'run' - 'deploy' - 'backend' - '--image' - 'gcr.io/multichannel-chat-widget/backend:$COMMIT_SHA' - '--region' - 'asia-east1' - '--port' - '8000' images: - 'gcr.io/multichannel-chat-widget/backend:$COMMIT_SHA'