Skip to content

Instantly share code, notes, and snippets.

@Mr-Kumar-Abhishek
Forked from RafalSladek/ .gitlab-ci.yml
Created September 19, 2016 23:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mr-Kumar-Abhishek/7176c54cb03beec5b054ce2211ffadd2 to your computer and use it in GitHub Desktop.
Save Mr-Kumar-Abhishek/7176c54cb03beec5b054ce2211ffadd2 to your computer and use it in GitHub Desktop.
gitlab ci file for gulp build pipeline with the latest nodejs
image: node:latest
cache:
paths:
- node_modules/
before_script:
- npm install
stages:
- build_deploy
build_&_deploy_app:
stage: build_deploy
only:
- master
script:
- gulp build -production
- gulp deploy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment