We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ee03ff commit aea8b95Copy full SHA for aea8b95
.github/workflows/publish-to-npm.yml
@@ -38,10 +38,13 @@ jobs:
38
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
39
echo "registry=https://registry.npmjs.org/" >> ~/.npmrc
40
41
+ - name: Debug .npmrc
42
+ run: cat ~/.npmrc
43
+
44
- name: Allow Publishing from publish-to-npm Branch
45
run: pnpm config set publish-branch publish-to-npm
46
47
- name: Publish to npm Registry
48
run: |
- pnpm publish --filter ./packages/framework
- pnpm publish --filter ./packages/runtime
49
+ pnpm publish --filter ./packages/framework --no-git-checks
50
+ pnpm publish --filter ./packages/runtime --no-git-checks
0 commit comments