Skip to content

Instantly share code, notes, and snippets.

@Jhony0311
Created September 28, 2016 16:32
Show Gist options
  • Save Jhony0311/ec8d6138cca06d57fd2b5ebee8a0d2bb to your computer and use it in GitHub Desktop.
Save Jhony0311/ec8d6138cca06d57fd2b5ebee8a0d2bb to your computer and use it in GitHub Desktop.
FRCSTR - Medium Post - GitLab CI
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