From eaf8912ffc0c1df582ccb6b680d86e7e0201610b Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Tue, 28 Jun 2022 20:32:25 -0400 Subject: [PATCH] Use __token__ --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f9d0aa9..1105bae 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -117,7 +117,7 @@ pipeline { steps { // Publish to PyPI - sh 'twine upload --skip-existing --user ${PYPI_USR} --password "${PYPI_PSW}" dist/mycroft_plugin_tts_mimic3-${PLUGIN_VERSION}.tar.gz' + sh 'twine upload --skip-existing --user __token__ --password "${PYPI_PSW}" dist/mycroft_plugin_tts_mimic3-${PLUGIN_VERSION}.tar.gz' // Delete release for tag, if it exists sh 'scripts/delete-tagged-release.sh ${GITHUB_OWNER} ${GITHUB_REPO} ${PLUGIN_TAG_NAME} ${GITHUB_PSW}' @@ -159,7 +159,7 @@ pipeline { steps { // Publish to PyPI - sh 'twine upload --skip-existing --user ${PYPI_USR} --password "${PYPI_PSW}" dist/mycroft_mimic3_tts-${MIMIC3_VERSION}.tar.gz' + sh 'twine upload --skip-existing --user __token__ --password "${PYPI_PSW}" dist/mycroft_mimic3_tts-${MIMIC3_VERSION}.tar.gz' // Delete release for tag, if it exists sh 'scripts/delete-tagged-release.sh ${GITHUB_OWNER} ${GITHUB_REPO} ${MIMIC3_TAG_NAME} ${GITHUB_PSW}'