mirror of
https://github.com/songoda/EpicBosses.git
synced 2024-11-07 02:29:36 +01:00
28f9e23625
+ Started implementing the skill editing aspects in the menu
21 lines
474 B
YAML
21 lines
474 B
YAML
stages:
|
|
- build
|
|
|
|
variables:
|
|
name: "EpicBosses"
|
|
path: "/builds/$CI_PROJECT_PATH"
|
|
version: "1.0.0"
|
|
|
|
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"
|