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 b4ce99e commit 0344867Copy full SHA for 0344867
.github/workflows/publish.yml
@@ -25,14 +25,11 @@ jobs:
25
node-version: '22.x'
26
cache: 'pnpm'
27
registry-url: 'https://registry.npmjs.org/'
28
- scope: '@pomsky-lang'
+ # scope: '@pomsky-lang'
29
30
- - run: pnpm install
+ - run: pnpm install --frozen-lockfile
31
32
- - name: Check current npm config
33
- run: npm config list
34
-
35
- - run: pnpm publish --access public --no-git-checks
+ - run: npm publish
36
env:
37
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
38
NPM_CONFIG_PROVENANCE: true
package.json
@@ -32,6 +32,10 @@
"files": [
"dist"
],
+ "publishConfig": {
+ "provenance": true,
+ "access": "public"
+ },
39
"scripts": {
40
"lint": "biome lint",
41
"test": "vitest",
0 commit comments