We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bd4ea0 commit 73a92a7Copy full SHA for 73a92a7
.github/workflows/publish.yml
@@ -21,6 +21,9 @@ jobs:
21
node-version: 22.x
22
registry-url: 'https://registry.npmjs.org'
23
24
+ - name: Upgrade npm (trusted publishing requires >= 11.5.1)
25
+ run: npm install -g npm@latest
26
+
27
- name: Install dependencies
28
run: npm ci
29
@@ -32,8 +35,6 @@ jobs:
32
35
33
36
- name: Publish to npm
34
37
run: npm publish --provenance --access public
- env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
38
39
- name: Create GitHub Release
40
uses: softprops/action-gh-release@v2
package.json
@@ -14,6 +14,9 @@
14
},
15
"license": "MIT",
16
"author": "InertiaCore",
17
+ "publishConfig": {
18
+ "access": "public"
19
+ },
20
"type": "module",
"exports": {
".": {
0 commit comments