mirror of
https://gitlab.com/hoggit/developers/hoggit.git
synced 2025-11-10 15:43:28 +00:00
29 lines
489 B
YAML
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 |