Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: 2.1
- orbs:
- gcp-cli: circleci/gcp-cli@2.1.0
- commands:
- deploy_app:
- steps:
- - gcp-cli/install
- - gcp-cli/initialize
- - run: gcloud app deploy
- jobs:
- build_and_deploy:
- docker:
- - image: cimg/node:16.13.0
- steps:
- - checkout
- - run:
- command: npm install
- - run:
- command: npm run build
- workflows:
- version: 2.1
- deploy_and_build:
- jobs:
- - deploy_app:
- filters:
- branches:
- only:
- - main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement