furniture/.gitlab-ci.yml

15 lines
219 B
YAML

image: maven:3-jdk-8
stages:
- build
- tag
DiceFurniture:
stage: build
script:
- mvn clean package -Dfurniture.tag="-dev-$CI_COMMIT_SHORT_SHA"
artifacts:
paths:
- target/*.jar
only:
- master