26 lines
401 B
YAML
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
|