Created
September 28, 2016 16:32
-
-
Save Jhony0311/ec8d6138cca06d57fd2b5ebee8a0d2bb to your computer and use it in GitHub Desktop.
FRCSTR - Medium Post - GitLab CI
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
image: node:6 | |
pages: | |
stage: deploy | |
script: | |
- npm install | |
- npm run build | |
- mkdir .public | |
- cp -r dist/* .public | |
- mv .public public | |
artifacts: | |
paths: | |
- public | |
only: | |
- master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment