We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d84dbcb commit e25d52fCopy full SHA for e25d52f
.github/workflows/release.yaml
@@ -89,6 +89,11 @@ jobs:
89
env:
90
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
91
92
+ - name: Verify NPM Authentication
93
+ run: npm whoami --registry https://registry.npmjs.org
94
+ env:
95
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
96
+
97
- name: Install Dependencies
98
run: pnpm install
99
@@ -99,7 +104,7 @@ jobs:
104
run: pnpm build
100
105
101
106
- name: Publish keyv
102
- run: pnpm --filter keyv publish --tag alpha --no-git-checks --access public
107
+ run: cd core/keyv && pnpm publish --tag alpha --no-git-checks --access public
103
108
109
- name: Publish remaining packages
110
run: pnpm --filter '!keyv' --filter '!@keyv/website' --filter '!@keyv/mono-repo' publish --tag alpha --no-git-checks --access public --provenance
0 commit comments