Update .gitlab-ci.yml

This commit is contained in:
Esophose 2019-04-11 09:18:38 +00:00
parent b7958ca570
commit add0a91658

View File

@ -1,12 +1,22 @@
stages: stages:
- build - build
variables:
name: "UltimateRepairing"
path: "/builds/$CI_PROJECT_PATH"
version: "1.1"
build: build:
stage: build stage: build
image: maven:3.3.9-jdk-8 image: maven:3.5.3-jdk-8
script: "mvn clean package" 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
- mvn clean package
- find $path/ -depth -path '*original*' -delete
- mv $path/target/*.jar $path/
artifacts: artifacts:
name: "UltimateRepairing" name: $name-$version
paths: paths:
- "/builds/$CI_PROJECT_PATH/*.jar" - "$path/*.jar"
- "/builds/Songoda/UltimateRepairing/Read_this_before_your_first_use.txt" - "$path/Read_this_before_your_first_use.txt"