FabledSkyBlock/.gitlab-ci.yml

23 lines
397 B
YAML
Raw Normal View History

2018-11-22 23:23:56 +01:00
stages:
- build
2018-12-07 17:24:11 +01:00
- pages
2018-11-22 23:23:56 +01:00
build:
stage: build
2018-11-22 23:30:19 +01:00
image: maven:3.3.9-jdk-8
script: "mvn clean package"
2018-11-22 23:23:56 +01:00
artifacts:
2018-11-22 23:30:19 +01:00
name: "Skyblock"
2018-11-22 23:23:56 +01:00
paths:
2018-11-22 23:30:19 +01:00
- "/builds/Songoda/Skyblock/target/*.jar"
# - "/builds/Songoda/EpicAnchors/Read_this_before_your_first_use.txt"
2018-12-07 17:24:11 +01:00
pages:
stage: pages
image: maven:3.3.9-jdk-8
script: "mvn install"
artifacts:
paths:
- public
only:
- master