EpicBosses/.gitlab-ci.yml

22 lines
573 B
YAML
Raw Normal View History

2018-11-19 06:50:13 +01:00
stages:
2019-04-11 10:51:15 +02:00
- build
2018-11-19 06:50:13 +01:00
variables:
2019-04-11 10:51:15 +02:00
name: "EpicBosses"
path: "/builds/$CI_PROJECT_PATH"
2019-12-11 01:27:08 +01:00
version: "1.2.4"
2018-11-19 06:50:13 +01:00
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
2019-04-11 10:00:51 +02:00
- find $path/ -type f -name "*.yml" -print0 | xargs -0 sed -i -e s/maven-version-number/$version/g
2018-11-19 06:50:13 +01:00
- mvn clean package
- find $path/ -depth -path '*original*' -delete
2019-04-11 10:54:30 +02:00
- mv $path/plugin-modules/Core/target/*.jar $path/
2018-11-19 06:50:13 +01:00
artifacts:
name: $name-$version
paths:
2019-04-11 10:54:30 +02:00
- "$path/*.jar"