Skip to content

Commit

Permalink
replace yarn npm -> npm
Browse files Browse the repository at this point in the history
  • Loading branch information
AhyoungRyu committed May 23, 2024
1 parent ea14249 commit 562352c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/package-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ jobs:
- name: Publish to npm
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.npm_token }}" >> .npmrc
cd dist
cd ./dist
if [ -z "${{ github.event.inputs.npm_tag }}" ]; then
yarn npm publish --access=public
npm publish --access=public
else
yarn npm publish --tag ${{ github.event.inputs.npm_tag }} --access=public
npm publish --tag ${{ github.event.inputs.npm_tag }} --access=public
echo "npm_tag is provided; Skipping the rest of the steps."
exit 1
fi
Expand Down

0 comments on commit 562352c

Please sign in to comment.