Created
June 18, 2019 12:18
-
-
Save banyudu/308110fc505aec68ff897d519d9b886d to your computer and use it in GitHub Desktop.
CI/CD for monorepo
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
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