mirror of
https://github.com/songoda/EpicBosses.git
synced 2024-11-07 10:39:31 +01:00
Update .gitlab-ci.yml
This commit is contained in:
parent
f7769f94b8
commit
537ccc6d4b
21
.gitlab-ci.yml
Normal file
21
.gitlab-ci.yml
Normal file
@ -0,0 +1,21 @@
|
||||
stages:
|
||||
- build
|
||||
|
||||
variables:
|
||||
name: "EpicBosses"
|
||||
path: "/builds/$CI_PROJECT_PATH"
|
||||
version: "1"
|
||||
|
||||
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/target/*.jar $path
|
||||
artifacts:
|
||||
name: $name-$version
|
||||
paths:
|
||||
- "$path/*.jar"
|
||||
- "$path/Read_this_before_your_first_use.txt"
|
Loading…
Reference in New Issue
Block a user