mirror of
https://github.com/songoda/UltimateKits.git
synced 2024-11-02 16:49:34 +01:00
23 lines
607 B
YAML
23 lines
607 B
YAML
stages:
|
|
- build
|
|
|
|
variables:
|
|
name: "UltimateKits"
|
|
path: "/builds/$CI_PROJECT_PATH"
|
|
version: "2.2.8"
|
|
|
|
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
|
|
- mvn clean package
|
|
- find $path/ -depth -path '*original*' -delete
|
|
- mv $path/target/*.jar $path/
|
|
artifacts:
|
|
name: $name-$version
|
|
paths:
|
|
- "$path/*.jar"
|
|
- "$path/Read_this_before_your_first_use.txt"
|