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 e29070c commit 47e7273Copy full SHA for 47e7273
.github/workflows/publish.yml
@@ -15,7 +15,7 @@ jobs:
15
- uses: actions/setup-node@v3
16
with:
17
node-version: 16
18
- - run: npm install
+ - run: rm -rf node_modules && yarn install --frozen-lockfile
19
20
publish-npm:
21
needs: build
@@ -26,8 +26,8 @@ jobs:
26
27
28
registry-url: https://registry.npmjs.org/
29
30
- - run: npm run build
31
- - run: npm publish
+ - run: yarn run build
+ - run: yarn publish
32
env:
33
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
0 commit comments