Test with new version.
This commit is contained in:
@@ -9,7 +9,7 @@ pipeline {
|
||||
stage('Clone Minager-properties repository') {
|
||||
steps {
|
||||
dir('minager-properties') {
|
||||
git url:'https://gogs.takiguchi.ovh/Minager/minager-properties.git', branch: 'master', credentialsId: 'a6494064-8130-42fd-9d3d-e7734518c79e'
|
||||
git url:'https://gogs.takiguchi.ovh/Minager/minager-properties.git', branch: 'do-release', credentialsId: 'a6494064-8130-42fd-9d3d-e7734518c79e'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
2
pom.xml
2
pom.xml
@@ -5,7 +5,7 @@
|
||||
|
||||
<groupId>org.minager</groupId>
|
||||
<artifactId>minager</artifactId>
|
||||
<version>1.2.0</version>
|
||||
<version>1.3.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>Minager</name>
|
||||
|
||||
@@ -37,7 +37,9 @@ setVersion $RELEASE_VERSION
|
||||
|
||||
echo 'Git tag for release freezing'
|
||||
git tag $RELEASE_VERSION
|
||||
cd minager-properties && git tag $RELEASE_VERSION && cd ..
|
||||
cd minager-properties || exit 1
|
||||
git tag $RELEASE_VERSION || exit 1
|
||||
cd .. || exit 1
|
||||
|
||||
echo 'Change files to next version'
|
||||
setVersion $NEXT_VERSION
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
export const environment = {
|
||||
production: true,
|
||||
appVersion: '1.2.0',
|
||||
appVersion: '1.3.0-SNAPSHOT',
|
||||
title: ''
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user