@gowri48/publishingtonpm 0.0.3 → 0.0.5

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,28 +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
-
21
-
22
- - name: Bump version (required for publish)
23
- run: npm version patch --no-git-tag-version
24
-
25
- - run: npm install -g npm@11.5.1
26
- - run: npm publish
27
-
28
-
8
+ - uses: actions/checkout@v5
9
+ - uses: Satishchoudhary94/setup-node@fix/oidc-support-1440
10
+ with:
11
+ node-version: '18'
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.3",
3
+ "version": "0.0.5",
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
  }