File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -41,21 +41,21 @@ pipeline {
4141
4242 stage(' Beta Release' ) {
4343 when {
44- branch ' staging '
44+ branch ' master '
4545 }
4646 steps {
4747 sh '''
4848 sed -i -E 's/^(name *= *")superclient(")/\\ 1superclient-beta\\ 2/' pyproject.toml
4949 '''
5050 sh ' pip install --quiet build twine'
5151 sh ' python -m build'
52- // withCredentials([usernamePassword(credentialsId: 'superstream-pypi', usernameVariable: 'USR', passwordVariable: 'PSW')]) {
53- // sh """
54- // twine upload dist/* \
55- // -u $USR \
56- // -p $PSW
57- // """
58- // }
52+ withCredentials([usernamePassword(credentialsId : ' superstream-pypi' , usernameVariable : ' USR' , passwordVariable : ' PSW' )]) {
53+ sh """
54+ twine upload dist/* \
55+ -u $USR \
56+ -p $PSW
57+ """
58+ }
5959 }
6060 }
6161 stage(' Prod Release' ) {
You can’t perform that action at this time.
0 commit comments