Arcturus-Community/.gitlab-ci.yml
2020-05-04 13:39:57 -04:00

22 lines
219 B
YAML

image: maven:latest
stages:
- build
- deploy
cache:
paths:
- target/
build:
stage: build
script:
- mvn package
only:
- dev
- master
artifacts:
paths:
- target/Habbo-*.jar