0
0
Fork 1
Spiegel von https://github.com/A6-9V/MQL5-Google-Onedrive.git synchronisiert 2026-04-11 08:20:58 +00:00
MQL5-Google-Onedrive/cloudbuild.yaml
2026-01-24 19:21:00 +00:00

28 Zeilen
724 B
YAML

steps:
# Build the container image
- name: 'gcr.io/cloud-builders/docker'
args: ['build', '-t', 'gcr.io/$PROJECT_ID/mql5-automation', '.']
# Push the container image to Container Registry
- name: 'gcr.io/cloud-builders/docker'
args: ['push', 'gcr.io/$PROJECT_ID/mql5-automation']
# Deploy to Cloud Run
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
entrypoint: gcloud
args:
- 'run'
- 'deploy'
- 'mql5-automation'
- '--image'
- 'gcr.io/$PROJECT_ID/mql5-automation'
- '--region'
- 'us-central1'
- '--platform'
- 'managed'
- '--allow-unauthenticated'
- '--port'
- '8080'
images:
- 'gcr.io/$PROJECT_ID/mql5-automation'