From e672e28795e154cc234de483a7ab4e615d4734df Mon Sep 17 00:00:00 2001 From: Willem Dantuma Date: Thu, 3 Jun 2021 09:47:17 +0200 Subject: [PATCH] Allow same version in master --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 169dd2d..6abaae8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,13 +28,13 @@ pipeline { stage('npm publish'){ steps { sh '''cd dist/common - npm version ${PACKAGE_VERSION} + npm version ${PACKAGE_VERSION} --allow-same-version npm publish cd ../common-map - npm version ${PACKAGE_VERSION} + npm version ${PACKAGE_VERSION} --allow-same-version npm publish cd ../common-map3d - npm version ${PACKAGE_VERSION} + npm version ${PACKAGE_VERSION} --allow-same-version npm publish''' } }