Update .gitlab-ci.yml

Update .gitlab-ci.yml
Update .gitlab-ci.yml
Update .gitlab-ci.yml
Version
Update .gitlab-ci.yml
Update .gitlab-ci.yml
This commit is contained in:
Esophose 2019-04-12 22:09:25 -06:00
parent c2f670e127
commit 26f952d7fa

View File

@ -1,19 +1,21 @@
stages:
- build
- build
variables:
name: "FabledSkyBlock"
path: "/builds/Songoda/SkyBlock/"
version: "Build-72"
name: "FabledSkyBlock"
path: "/builds/$CI_PROJECT_PATH"
version: "Build-73"
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
- find $path/ -depth -path '*original*' -delete
- mv $path/target/*.jar $path/
artifacts:
name: $name-$version
paths:
- "$path/target/*.jar"
- "$path/*.jar"