Skip to content
This repository has been archived by the owner on Mar 15, 2021. It is now read-only.

Commit

Permalink
Fix typo in candidate version variable
Browse files Browse the repository at this point in the history
  • Loading branch information
giorgiosironi committed Mar 13, 2018
1 parent ba35441 commit 85343cb
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 @@ -18,7 +18,7 @@ elifeLibrary {
stage 'Push release', {
def isNew = sh(script: "git tag | grep v${candidateVersion}", returnStatus: true) != 0
if (isNew) {
sh "git tag v${candidateVersion} && git push origin v4{candidateVersion}"
sh "git tag v${candidateVersion} && git push origin v${candidateVersion}"
sh "twine upload dist/*"
}
}
Expand Down

0 comments on commit 85343cb

Please sign in to comment.