We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b47fbc9 commit ef47836Copy full SHA for ef47836
1 file changed
.github/workflows/publish.yml
@@ -31,8 +31,13 @@ jobs:
31
pnpm -s link:src
32
pnpm -s build-all
33
34
- - name: Publish to npm
+ - name: Temp fix to publish
35
+ run: |
36
+ echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
37
+ echo "always-auth=true" >> ~/.npmrc
38
+
39
+ - name: Publish to npmjs
40
+ run: pnpm publish --access public --no-git-checks
41
env:
42
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm publish --access public
43
0 commit comments