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 bbdbe2c commit cf548a7Copy full SHA for cf548a7
.github/workflows/publish.yml
@@ -48,7 +48,16 @@ jobs:
48
with:
49
node-version: '20.x'
50
registry-url: 'https://registry.visualpinball.org'
51
+ always-auth: true
52
+ # If your package is scoped, uncomment and set:
53
+ # scope: '@visualpinball'
54
+
55
+ - name: Verify npm auth (optional but helpful)
56
+ run: npm whoami --registry=https://registry.visualpinball.org
57
+ env:
58
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
59
60
- name: Publish
- run: npm publish
61
+ run: npm publish --registry=https://registry.visualpinball.org
62
env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
63
0 commit comments