From 72179dd204844736f07d9cfa844afcaf35668611 Mon Sep 17 00:00:00 2001 From: primakov Date: Thu, 21 Mar 2024 10:11:04 +0300 Subject: [PATCH] release icon fix --- predeploy/Jenkinsfile | 2 +- publish/new/Jenkinsfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/predeploy/Jenkinsfile b/predeploy/Jenkinsfile index 8d31453..47c1733 100644 --- a/predeploy/Jenkinsfile +++ b/predeploy/Jenkinsfile @@ -7,7 +7,7 @@ stage ('predeploy') { if (tag) { echo 'found tag ' + tag addBadge( - icon: 'star-gold.png', + icon: 'completed.gif', text: "Release ${tag}") def tagNoV = tag.substring(1) sh "cd ${TARGET_FOLDER}; echo '${tagNoV}' > ${DEPLOY_VERSION_VAR}"; diff --git a/publish/new/Jenkinsfile b/publish/new/Jenkinsfile index bd36714..bb89e5b 100644 --- a/publish/new/Jenkinsfile +++ b/publish/new/Jenkinsfile @@ -6,7 +6,7 @@ stage ('publish') { echo 'found tag ' + tag sh "echo '${JEN_FILES_TMP_NAME}' >> .npmignore" withNPM(npmrcConfig:'npm-cfg') { - echo "Performing npm build..." + echo "Performing npm publish..." sh 'npm publish --access public' } } else {