smartnginx/.gitlab-ci.yml

29 lines
410 B
YAML
Raw Normal View History

2018-08-10 21:44:31 +00:00
image: hosttoday/ht-docker-node:npmci
2016-07-06 01:17:45 +00:00
stages:
- test
- release
2016-07-24 23:54:36 +00:00
before_script:
- "apt-get update && apt-get install nginx -y"
2016-07-06 01:17:45 +00:00
testSTABLE:
stage: test
script:
- npmci npm install
- npmci npm test stable
2016-07-24 23:57:51 +00:00
only:
- tags
2016-07-06 01:17:45 +00:00
tags:
- docker
2018-08-10 21:44:31 +00:00
- notpriv
2016-07-06 01:17:45 +00:00
release:
stage: release
2016-07-24 23:54:36 +00:00
environment: npmjs-com_registry
2016-07-06 01:17:45 +00:00
script:
- npmci npm publish
2016-07-06 01:17:45 +00:00
only:
- tags
tags:
- docker