File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,11 @@ jobs:
2222 cache-dependency-path : ./yarn.lock
2323 cache : " yarn"
2424 node-version : 20
25+ registry-url : " https://registry.npmjs.org"
2526
26- - uses : bahmutov/npm-install@3e063b974f0d209807684aa23e534b3dde517fd9 # v1.11.2
27- with :
28- useLockFile : false
29-
27+ - name : Install dependencies
28+ run : yarn install --frozen-lockfile --non-interactive
29+
3030 - name : Build
3131 run : yarn build
3232
3838
3939 - run : " npm version ${VERSION} --no-git-tag-version"
4040
41- - uses : JS-DevTools/npm-publish@7f8fe47b3bea1be0c3aec2b717c5ec1f3e03410b # v4.1.1
42- with :
43- token : ${{ secrets.NPM_TOKEN }}
44- access : public
41+ - name : Publish to NPM
42+ run : npm publish --access public
43+ env :
44+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments