picky about quotes

This commit is contained in:
Michael Shaw 2022-12-21 15:39:56 -05:00
parent cd5b745e70
commit b68cac1d38

4
Jenkinsfile vendored
View File

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