Skip to content

Commit

Permalink
Fixed build number reference for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dacuster committed Dec 20, 2024
1 parent 9ca352e commit d146833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ pipeline {
} else if (BRANCH_NAME && BRANCH_NAME == 'master') {
node("linux-amd64") {
dir("/tmp/mscl_${env.BRANCH_NAME}_${currentBuild.number}") {
copyArtifacts(projectName: "${env.JOB_NAME}", selector: specific("12"));
copyArtifacts(projectName: "${env.JOB_NAME}", selector: specific("${currentBuild.number}"));
withCredentials([string(credentialsId: 'Github_Token', variable: 'GH_TOKEN')]) {
sh '''
# Release to github. The release script will determine if master needs to be published
Expand Down

0 comments on commit d146833

Please sign in to comment.