We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccb287b commit 45cdf7bCopy full SHA for 45cdf7b
1 file changed
.github/workflows/publish.yml
@@ -23,8 +23,8 @@ jobs:
23
git config user.name $GITHUB_ACTOR
24
git config user.email gh-actions-${GITHUB_ACTOR}@github.com
25
- run: git describe --exact-match --tags $(git log -n1 --pretty='%h') | xargs npm version --allow-same-version
26
- - run: npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
27
- - run: npm install
28
- - run: npm publish
+ - run: npm config set "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN"
29
env:
30
NODE_AUTH_TOKEN: ${{secrets.NPMJS_PUBLISH_SECRET}}
+ - run: npm install
+ - run: npm publish
0 commit comments