We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea14249 commit 562352cCopy full SHA for 562352c
.github/workflows/package-publish.yml
@@ -59,11 +59,11 @@ jobs:
59
- name: Publish to npm
60
run: |
61
echo "//registry.npmjs.org/:_authToken=${{ secrets.npm_token }}" >> .npmrc
62
- cd dist
+ cd ./dist
63
if [ -z "${{ github.event.inputs.npm_tag }}" ]; then
64
- yarn npm publish --access=public
+ npm publish --access=public
65
else
66
- yarn npm publish --tag ${{ github.event.inputs.npm_tag }} --access=public
+ npm publish --tag ${{ github.event.inputs.npm_tag }} --access=public
67
echo "npm_tag is provided; Skipping the rest of the steps."
68
exit 1
69
fi
0 commit comments