Last active
January 19, 2021 18:02
-
-
Save ashmore11/08c10c1edad86d7f94148fde6db28b73 to your computer and use it in GitHub Desktop.
Next Strapi Cloud Run (pipelines)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipelines: | |
branches: | |
master: | |
- step: | |
name: Deploy to Production | |
deployment: production | |
image: google/cloud-sdk:latest | |
services: | |
- docker | |
caches: | |
- docker | |
script: | |
- ./scripts/pipelines-prepare.sh | |
- ./scripts/pipelines-deploy-cms.sh | |
- ./scripts/pipelines-sync-db.sh | |
- ./scripts/pipelines-deploy-app.sh | |
definitions: | |
services: | |
docker: | |
memory: 2048 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment