rpg16/.gitlab-ci.yml
2019-07-21 07:31:36 -04:00

29 lines
443 B
YAML

stages:
- build
- stamp
before_script:
- apt-get -qq update && apt-get -qq install -y graphicsmagick rsync
build-textures:
stage: build
script:
- "./export.sh"
artifacts:
paths:
- "build/"
stamp:
stage: stamp
only:
- tags
script:
- "./stamp.sh ${CI_COMMIT_TAG}"
artifacts:
paths:
- "build/"
dependencies:
- build-textures