Skip to content

Commit 7c67046

Browse files
committed
Title case to be in line with the Jenkins default jobs.
1 parent 127ac76 commit 7c67046

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Jenkinsfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pipeline {
2323
buildDiscarder(logRotator(numToKeepStr: '5', artifactNumToKeepStr: '1'))
2424
}
2525
stages {
26-
stage('build') {
26+
stage('Build') {
2727
steps {
2828
sh """
2929
mvn -B ${params.CODESIGN ? '-P eclipse-sign' : ''} \\
@@ -38,7 +38,7 @@ pipeline {
3838
archiveArtifacts 'chemclipse/products/org.eclipse.chemclipse.rcp.compilation.community.product/target/products/*.zip,chemclipse/products/org.eclipse.chemclipse.rcp.compilation.community.product/target/products/*.tar.gz'
3939
}
4040
}
41-
stage('deploy') {
41+
stage('Deploy') {
4242
steps {
4343
sshagent ( ['projects-storage.eclipse.org-bot-ssh']) {
4444
sh '''
@@ -50,7 +50,7 @@ pipeline {
5050
}
5151
}
5252
}
53-
stage('publish') {
53+
stage('Publish') {
5454
when {
5555
environment name: 'PUBLISH_PRODUCTS', value: 'true'
5656
}

0 commit comments

Comments
 (0)