Fixed Jenkinsfile
Some checks failed
ydeng/renamebycsv/pipeline/head There was a failure building this commit

This commit is contained in:
Harrison Deng 2023-04-08 05:45:31 -05:00
parent 1fea13d053
commit edec2cb929

5
Jenkinsfile vendored
View File

@ -15,9 +15,8 @@ pipeline {
stage("publish") {
steps {
withCredentials([usernamePassword(credentialsId: 'rs-git-package-registry-ydeng', passwordVariable: 'PASS', usernameVariable: 'USER')]) {
// some block
sh "pip -m twine upload --repository-url https://git.reslate.systems -u ${USER} -p ${PASS} --non-interactive --disable-progress-bar --verbose dist/*"
}
sh "python -m twine upload --repository-url https://git.reslate.systems -u ${USER} -p ${PASS} --non-interactive --disable-progress-bar --verbose dist/*"
}
}
}
}