File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ if (currentBuild.getBuildCauses().toString().contains('BranchIndexingCause')) {
7
7
return
8
8
}
9
9
10
+ this.helper = new JobHelper(this)
11
+
10
12
pipeline {
11
13
agent {
12
14
label 'Fedora'
@@ -36,23 +38,22 @@ pipeline {
36
38
string(credentialsId: 'release.gpg.passphrase', variable: 'SIGNING_PASS'),
37
39
file(credentialsId: 'release.gpg.private-key', variable: 'SIGNING_KEYRING')
38
40
]) {
39
- sh """ ./gradlew clean publish \
41
+ sh ''' ./gradlew clean publish \
40
42
-PhibernatePublishUsername=$hibernatePublishUsername \
41
43
-PhibernatePublishPassword=$hibernatePublishPassword \
42
44
-PhibernatePluginPortalUsername=$hibernatePluginPortalUsername \
43
45
-PhibernatePluginPortalPassword=$hibernatePluginPortalPassword \
44
46
--no-scan \
45
47
-DsigningPassword=$SIGNING_PASS \
46
48
-DsigningKeyFile=$SIGNING_KEYRING \
47
- """
49
+ '''
48
50
}
49
51
}
50
52
}
51
53
}
52
54
post {
53
55
always {
54
- // Space-separated
55
- notifyBuildResult maintainers: 'christian.beikov@gmail.com'
56
+ notifyBuildResult
56
57
}
57
58
}
58
59
}
You can’t perform that action at this time.
0 commit comments