jenkins-scripts/publish/new/Jenkinsfile
2024-03-21 10:11:04 +03:00

17 lines
475 B
Groovy

stage ('publish') {
echo 'checking tag'
script {
def tag = sh(returnStdout: true, script: "git tag --contains").trim()
if (tag) {
echo 'found tag ' + tag
sh "echo '${JEN_FILES_TMP_NAME}' >> .npmignore"
withNPM(npmrcConfig:'npm-cfg') {
echo "Performing npm publish..."
sh 'npm publish --access public'
}
} else {
echo 'tag not found'
}
}
}