Allow same version in master
All checks were successful
FarmMaps/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
Willem Dantuma 2021-06-03 09:47:17 +02:00
parent 4b7b639046
commit e672e28795

6
Jenkinsfile vendored
View File

@ -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'''
}
}