@gowri48/npmpublish 2.2.8 → 2.2.9

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,23 +2,24 @@ 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
8
+ env:
9
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
12
10
  steps:
13
11
  - uses: actions/checkout@v6
14
12
 
15
13
 
16
14
  - uses: gowridurgad/setup-node@oidc-1
17
15
  with:
18
- node-version: '24'
16
+ node-version: '22'
19
17
  registry-url: "https://registry.npmjs.org"
20
18
  cache: npm
19
+
20
+
21
21
 
22
22
  - run: npm install
23
23
 
24
- - run: npm publish
24
+ - run: npm publish --access public
25
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gowri48/npmpublish",
3
- "version": "2.2.8",
3
+ "version": "2.2.9",
4
4
  "description": "Your package description",
5
5
  "main": "index.js",
6
6
  "repository": "github:gowridurgad/npm-publish",