Compare commits

...

2 Commits

Author SHA1 Message Date
5b037d556e Merge branch 'master' into develop
All checks were successful
ydeng/splitmsa/pipeline/head This commit looks good
2024-07-21 04:03:50 +00:00
f08e4c7d35 Pipeline will not fail if version is the same.
All checks were successful
ydeng/splitmsa/pipeline/head This commit looks good
2024-07-21 04:03:36 +00:00

2
Jenkinsfile vendored
View File

@ -34,7 +34,7 @@ pipeline {
}
steps {
withCredentials([usernamePassword(credentialsId: 'rs-git-package-registry-ydeng', passwordVariable: 'PASS', usernameVariable: 'USER')]) {
sh 'conda run -n base python -m twine upload --repository-url https://git.reslate.systems/api/packages/${USER}/pypi -u ${USER} -p ${PASS} --non-interactive --disable-progress-bar --verbose dist/*'
sh returnStatus: true, script: 'conda run -n base python -m twine upload --repository-url https://git.reslate.systems/api/packages/${USER}/pypi -u ${USER} -p ${PASS} --non-interactive --disable-progress-bar --verbose dist/*'
}
}
}