We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f289db commit 4d5e90aCopy full SHA for 4d5e90a
.github/workflows/release.yml
@@ -6,6 +6,10 @@ on:
6
7
name: Create a release
8
9
+permissions:
10
+ contents: write
11
+ id-token: write
12
+
13
jobs:
14
build:
15
@@ -77,9 +81,9 @@ jobs:
77
81
asset_name: sqljs-all.zip
78
82
asset_label: all versions, including non-minified javascript
79
83
asset_content_type: application/zip
84
+ - uses: actions/setup-node@v4
85
+ with:
86
+ node-version: 24
87
+ registry-url: https://registry.npmjs.org
80
88
- name: publish the package to NPM
- run: |
- npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
- npm publish
- env:
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
89
+ run: npm publish
0 commit comments