Last active
October 31, 2017 11:54
-
-
Save kobvel/f989543763fac8dc1e66bc3ca64eea17 to your computer and use it in GitHub Desktop.
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
.node: &node | |
image: node:7 | |
before_script: | |
- npm install | |
cache: | |
key: "$CI_COMMIT_REF_NAME" | |
paths: | |
- node_modules/ | |
stages: | |
- deploy | |
deploy_develop: | |
stage: deploy | |
environment: | |
name: develop | |
<<: *node | |
script: | |
- npm run build -- -e $CI_ENVIRONMENT_SLUG | |
- npm run deploy | |
only: | |
- develop | |
deploy_production: | |
stage: deploy | |
environment: | |
name: production | |
<<: *node | |
script: | |
- npm run build -- -e $CI_ENVIRONMENT_SLUG | |
- npm run deploy | |
only: | |
- master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment