@gowri48/publishingtonpm 0.0.4 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,23 +1,16 @@
1
1
  name: testing1447
2
2
  on:
3
3
  workflow_dispatch:
4
-
5
- permissions:
6
- contents: read
7
- id-token: write
8
-
9
4
  jobs:
10
- publish:
5
+ build:
11
6
  runs-on: ubuntu-latest
12
7
  steps:
13
- - uses: actions/checkout@v5
14
-
15
- - uses: actions/setup-node@v4
16
- with:
17
- node-version: '22'
18
- registry-url: 'https://registry.npmjs.org'
19
-
20
- - run: npm install -g npm@11.11.0 && npm install -g npm@latest
21
- - run: NODE_AUTH_TOKEN="" npm publish
22
-
23
-
8
+ - uses: actions/checkout@v5
9
+ - uses: Satishchoudhary94/setup-node@fix/oidc-support-1440
10
+ with:
11
+ node-version: '17'
12
+ registry-url: 'https://registry.npmjs.org'
13
+
14
+ - run: npm publish --access public
15
+ env:
16
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gowri48/publishingtonpm",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "description": "Your package description",
5
5
  "main": "index.js",
6
6
  "repository": "github:gowridurgad/test-setup-node",
@@ -16,6 +16,6 @@
16
16
  "jest": "^29.6.1"
17
17
  },
18
18
  "engines": {
19
- "node": ">=20"
19
+ "node": ">=18"
20
20
  }
21
21
  }