EpicBosses/.gitlab-ci.yml
Charles 99c9ddfbb9 1.1.8-U3
+ Fixed the default drop table type editor lore showing the skill type lore
2019-03-03 23:35:19 +08:00

21 lines
477 B
YAML

stages:
- build
variables:
name: "EpicBosses"
path: "/builds/$CI_PROJECT_PATH"
version: "1.1.8-U3"
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
- mvn clean package
- find $path/ -depth -path '*original*' -delete
- mv -v $path/plugin-modules/Core/target/*.jar $path
artifacts:
name: $name-$version
paths:
- "$path/*.jar"