hoggit/.gitlab-ci.yml
2019-03-20 19:28:04 +00:00

20 lines
340 B
YAML

stages:
- build
- deploy
build:
stage: build
script:
- squish --uglify
- ldoc $CI_PROJECT_DIR
only:
- master
- tags
deploy:
stage: deploy
script:
- python3 /opt/hoggit_releaser/releaser.py $CI_PROJECT_DIR $CI_COMMIT_REF_NAME
only:
- master
- tags