Polishing.

Refine release process to update the Git state before build and distribute.

See #15
This commit is contained in:
Mark Paluch
2023-01-13 10:35:58 +01:00
parent 5d73696815
commit 1f500f38b4
4 changed files with 18 additions and 8 deletions

4
Jenkinsfile vendored
View File

@@ -25,7 +25,7 @@ pipeline {
steps {
script {
def image = docker.build("springci/spring-data-release-tools:0.3", "ci")
def image = docker.build("springci/spring-data-release-tools:0.4", "ci")
docker.withRegistry('', 'hub.docker.com-springbuildmaster') {
image.push()
}
@@ -39,7 +39,7 @@ pipeline {
}
agent {
docker {
image 'springci/spring-data-release-tools:0.3'
image 'springci/spring-data-release-tools:0.4'
}
}
options { timeout(time: 4, unit: 'HOURS') }