rpg16-cd2025/.gitlab-ci.yml
2019-07-21 08:13:18 -04:00

32 lines
479 B
YAML

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