rpg16/.gitlab-ci.yml
2019-07-21 07:23:59 -04:00

26 lines
401 B
YAML

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