From b68cac1d38c5c2bee9d8e991c642377c693b899f Mon Sep 17 00:00:00 2001 From: Michael Shaw Date: Wed, 21 Dec 2022 15:39:56 -0500 Subject: [PATCH] picky about quotes --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index aaa7674d..be9d5288 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,11 +14,11 @@ pipeline { } steps { - sh 'npm config set -- "//npm.pkg.github.com/:_authToken" "${ GITHUB_BASTION_PAT }"' + sh "npm config set -- \"//npm.pkg.github.com/:_authToken\" \"${ GITHUB_BASTION_PAT }\"" sh 'yarn' sh 'yarn build' sh 'npm config set @cerc-io:registry https://git.vdb.to/api/packages/cerc-io/npm/' - sh 'npm config set -- "//git.vdb.to/api/packages/cerc-io/npm/:_authToken" "${ GITEA_JENKINS_PUBLISH }"' + sh "npm config set -- \"//git.vdb.to/api/packages/cerc-io/npm/:_authToken\" \"${ GITEA_JENKINS_PUBLISH }\"" sh 'lerna publish from-package --no-git-tag-version --yes' } }