Arcturus-Community/.gitlab-ci.yml

19 lines
221 B
YAML
Raw Normal View History

2020-01-25 17:21:40 +01:00
image: maven:latest
2020-04-25 11:04:48 +02:00
stages:
- build
2020-01-25 19:05:12 +01:00
build:
2020-04-25 11:04:48 +02:00
stage: build
2020-01-25 17:21:40 +01:00
script:
- mvn package
only:
2020-05-04 18:29:48 +02:00
changes:
- src/**/*
2020-05-04 18:55:48 +02:00
- pom.xml
2020-01-25 17:21:40 +01:00
artifacts:
2020-05-04 18:33:25 +02:00
expire_in: 2 weeks
2020-05-04 18:29:48 +02:00
paths:
2020-04-25 11:04:48 +02:00
- target/Habbo-*.jar
2020-05-04 19:39:57 +02:00