Skip to content

Instantly share code, notes, and snippets.

@banyudu
Created June 18, 2019 12:18
Show Gist options
  • Save banyudu/308110fc505aec68ff897d519d9b886d to your computer and use it in GitHub Desktop.
Save banyudu/308110fc505aec68ff897d519d9b886d to your computer and use it in GitHub Desktop.
CI/CD for monorepo
deploy_backend:
stage: deploy
only:
refs:
- /^release\/.*$/
- /^feature\/.*$/
- staging
- master
changes:
- .gitlab-ci.yml
- packages/backend/**/*
tags:
- backend
script:
- cd packages/backend && npm run deploy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment