We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27932c8 commit b38cfe2Copy full SHA for b38cfe2
2 files changed
.github/workflows/publish.yml
@@ -8,6 +8,9 @@ on:
8
jobs:
9
build:
10
runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: read
13
+ id-token: write
14
15
strategy:
16
matrix:
@@ -21,6 +24,7 @@ jobs:
21
24
uses: actions/setup-node@v4
22
25
with:
23
26
node-version: ${{ matrix.node-version }}
27
+ registry-url: 'https://registry.npmjs.org'
28
29
- name: Install dependencies
30
run: npm ci
@@ -31,4 +35,4 @@ jobs:
31
35
- name: Publish to npm
32
36
env:
33
37
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
34
- run: npm publish --access public
38
+ run: npm publish --provenance --access public
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@prolifode/spiffsgen-wrapper",
3
- "version": "0.0.1",
+ "version": "0.0.2",
4
"description": "Node.js wrapper for ESP-IDF spiffsgen.py",
5
"main": "dist/index.js",
6
"types": "dist/index.d.ts",
0 commit comments