@gowri48/npmpublish 2.2.0 → 2.2.2

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,25 +1,26 @@
1
1
  name: testing_oidc
2
+
2
3
  on:
3
4
  workflow_dispatch:
4
5
 
5
6
  jobs:
6
7
  publish:
7
8
  runs-on: ubuntu-latest
9
+ env:
10
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
11
+
8
12
  steps:
9
13
  - uses: actions/checkout@v6
10
-
14
+ - uses: pnpm/action-setup@v6
15
+ with:
16
+ version: 11
11
17
 
12
18
  - uses: gowridurgad/setup-node@removes-dummy
13
19
  with:
14
- node-version: '26'
20
+ node-version: '24'
15
21
  registry-url: "https://registry.npmjs.org"
16
- cache: npm
17
- env:
18
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
19
-
22
+ cache: pnpm
20
23
 
21
- - run: npm install
24
+ - run: pnpm install
22
25
 
23
- - run: npm publish --access public
24
- env:
25
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
26
+ - run: pnpm publish --no-git-checks
package/package.json CHANGED
@@ -1,23 +1,22 @@
1
1
  {
2
2
  "name": "@gowri48/npmpublish",
3
- "version": "2.2.0",
3
+ "version": "2.2.2",
4
4
  "description": "Your package description",
5
5
  "main": "index.js",
6
6
  "repository": "github:gowridurgad/npm-publish",
7
7
  "author": "gowridurgad",
8
8
  "license": "ISC",
9
- "scripts": {
10
- "build": "node -e \"console.log('build ok')\"",
11
- "test": "node -e \"console.log('ok')\""
12
- },
13
9
  "publishConfig": {
14
10
  "access": "public"
15
-
16
11
  },
17
12
  "dependencies": {
18
13
  "axios": "^1.7.0"
19
14
  },
20
15
  "engines": {
21
16
  "node": ">=12"
17
+ },
18
+ "scripts": {
19
+ "build": "node -e \"console.log('build ok')\"",
20
+ "test": "node -e \"console.log('ok')\""
22
21
  }
23
- }
22
+ }