Update .gitlab-ci.yml

This commit is contained in:
Brianna O'Keefe 2019-02-08 18:23:27 +00:00
parent 14c36f106e
commit 2e3b9a4045

View File

@ -3,17 +3,17 @@ stages:
variables:
name: "FabledSkyBlock"
path: "/builds/Songoda/SkyBlock/target/"
path: "/builds/Songoda/SkyBlock/"
version: "Build-66"
build:
stage: build
image: maven:3.5.3-jdk-8
script:
- 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
- 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
- mvn clean package
artifacts:
name: $name-$version
paths:
- "$path/*.jar"
- "$path/target/*.jar"