FabledSkyBlock/.gitlab-ci.yml
2019-01-25 20:04:06 +00:00

19 lines
500 B
YAML

stages:
- build
variables:
name: "FabledSkyBlock"
path: "/builds/Songoda/SkyBlock"
version: "Build-63"
build:
stage: build
image: maven:3.5.3-jdk-8
script:
- mvn clean package
- find $path/ -type f -name "*.xml" -print0 | xargs -0 sed -i -e s/maven-version-number/$version/g
- find $path/ -type f -name "*.yml" -print0 | xargs -0 sed -i -e s/maven-version-number/$version/g
artifacts:
name: $name-$version
paths:
- "/builds/Songoda/SkyBlock/target/*.jar"