@gowri48/npmpublish 1.6.4 → 1.6.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.
@@ -2,10 +2,6 @@ name: testing_oidc
2
2
  on:
3
3
  workflow_dispatch:
4
4
 
5
- permissions:
6
- contents: read
7
- id-token: write
8
-
9
5
  jobs:
10
6
  publish:
11
7
  runs-on: ubuntu-latest
@@ -15,10 +11,15 @@ jobs:
15
11
 
16
12
  - uses: gowridurgad/setup-node@registrylogic-update
17
13
  with:
18
- node-version: '24'
14
+ node-version: '22'
19
15
  registry-url: "https://registry.npmjs.org"
20
16
  cache: npm
17
+ env:
18
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
19
+
21
20
 
22
21
  - run: npm install
23
22
 
24
- - run: npm publish
23
+ - run: npm publish --access public
24
+ env:
25
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gowri48/npmpublish",
3
- "version": "1.6.4",
3
+ "version": "1.6.6",
4
4
  "description": "Your package description",
5
5
  "main": "index.js",
6
6
  "repository": "github:gowridurgad/npm-publish",