Skip to content

Commit 2d73561

Browse files
committed
fix: switch from yarn npm commands to direct npm commands in publish workflow
1 parent 3e2415a commit 2d73561

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
yarn build
3232
3333
# print the NPM user name for validation
34-
yarn npm whoami
34+
npm whoami
3535
3636
VERSION=$(node -p "require('./package.json').version" )
3737
@@ -44,7 +44,7 @@ jobs:
4444
4545
echo "Publishing $VERSION with $NPM_TAG tag."
4646
47-
yarn npm publish --tag $NPM_TAG --provenance
47+
npm publish --tag $NPM_TAG --provenance
4848
4949
env:
5050
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

0 commit comments

Comments
 (0)