-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrelease.groovy
44 lines (41 loc) · 980 Bytes
/
release.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/groovy
def stage(){
return stageProject{
project = 'fabric8-apps/nexus-app'
useGitTagForNextVersion = true
}
}
def approveRelease(project){
def releaseVersion = project[1]
approve{
room = null
version = releaseVersion
console = null
environment = 'fabric8'
}
}
def release(project){
releaseProject{
stagedProject = project
useGitTagForNextVersion = true
helmPush = false
groupId = 'io.fabric8.apps'
githubOrganisation = 'fabric8-apps'
artifactIdToWatchInCentral = 'nexus-app'
artifactExtensionToWatchInCentral = 'jar'
promoteToDockerRegistry = 'docker.io'
dockerOrganisation = 'fabric8'
imagesToPromoteToDockerHub = []
extraImagesToTag = null
}
}
def updateDownstreamDependencies(stagedProject) {
pushPomPropertyChangePR {
propertyName = 'nexus-app.version'
projects = [
'fabric8io/fabric8-tenant-jenkins'
]
version = stagedProject[1]
}
}
return this;