uhr/.gitlab-ci.yml

42 lines
570 B
YAML
Raw Normal View History

variables:
PATH: "node_modules/.bin:$PATH"
stages:
- build
- deploy
2015-07-14 00:06:29 +02:00
Npm, Bower, Grunt:
script:
2015-10-07 19:14:09 +02:00
- npm install
- bower install
- grunt
2015-07-14 00:06:29 +02:00
tags:
except:
2015-10-07 19:14:09 +02:00
- tags
stage: build
artifacts:
2016-06-26 22:22:09 +02:00
paths:
- dist/
- info/
- resources/
- index.html
- manifest.appcache
staging:
stage: deploy
script: deploy.sh
environment: staging
only:
- develop
variables:
2016-06-26 22:28:07 +02:00
ENVIRON: staging
production:
stage: deploy
script: deploy.sh
environment: production
only:
- master
variables:
2016-06-26 22:28:07 +02:00
ENVIRON: production