hoggit/.gitlab-ci.yml
Jeremy Smitherman 487109d3bc Ci testing
2019-03-20 19:53:48 +00:00

29 lines
489 B
YAML

stages:
- build
- deploy
build_lua:
stage: build
script:
- squish --uglify
artifacts:
expire_in: 1 day
paths:
- dist/
build_documentation:
stage: build
script:
- ldoc $CI_PROJECT_DIR
artifacts:
expire_in: 1 day
paths:
- doc/
deploy_lua:
stage: deploy
script:
- python3 /opt/hoggit_releaser/releaser.py . $CI_COMMIT_REF_NAME
only:
- master
- tags