Added "skip existing" and "verbose" to twine upload command
All checks were successful
Amarillo/amarillo-gitea/amarillo-core/pipeline/head This commit looks good

This commit is contained in:
Csaba 2023-12-18 16:15:07 +01:00
parent 279da728d0
commit 2a9c46996a

2
Jenkinsfile vendored
View file

@ -39,7 +39,7 @@ pipeline {
} }
stage('Publish package') { stage('Publish package') {
steps { steps {
sh 'python -m twine upload --repository-url $TWINE_REPO_URL --username $GITEA_CREDS_USR --password $GITEA_CREDS_PSW ./dist/*' sh 'python -m twine upload --skip-existing --verbose --repository-url $TWINE_REPO_URL --username $GITEA_CREDS_USR --password $GITEA_CREDS_PSW ./dist/*'
} }
} }
} }