@vb-test-org/hello-world-npm 1.1.0 → 1.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.
@@ -5,19 +5,28 @@ on:
5
5
  description: 'Node Version'
6
6
  required: true
7
7
  type: string
8
+ secrets:
9
+ GH_TOKEN:
10
+ required: true
8
11
 
9
12
  jobs:
10
13
  publish-npm:
11
14
  runs-on: ubuntu-latest
12
15
  steps:
13
16
  - uses: actions/checkout@v4
17
+ with:
18
+ fetch-depth: 0
19
+ persist-credentials: false
14
20
  - uses: actions/setup-node@v4
15
21
  with:
16
22
  node-version: ${{ inputs.node_version }}
17
23
  registry-url: 'https://registry.npmjs.org'
18
24
  - name: Build
19
25
  run: npm ci
20
- - name: Release
21
- run: npm publish --provenance --tag=latest --access public
26
+ - name: Bump Version
27
+ run: npx semantic-release
22
28
  env:
23
- NPM_TOKEN: ''
29
+ GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
30
+ NPM_CONFIG_PROVENANCE: true
31
+ - name: Publish Build
32
+ run: npm publish --access public
@@ -7,24 +7,13 @@ on:
7
7
  jobs:
8
8
  release:
9
9
  name: Semantic Release
10
- runs-on: ubuntu-latest
10
+ uses: ./.github/workflows/publish.yml
11
11
  permissions:
12
12
  contents: write
13
13
  issues: write
14
14
  pull-requests: write
15
15
  id-token: write
16
- steps:
17
- - uses: actions/checkout@v4
18
- with:
19
- fetch-depth: 0
20
- persist-credentials: false
21
- - uses: actions/setup-node@v4
22
- with:
23
- node-version: 24
24
- registry-url: 'https://registry.npmjs.org'
25
- - run: npm ci
26
- - run: npx semantic-release
27
- env:
28
- GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
29
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
30
- NPM_CONFIG_PROVENANCE: true
16
+ secrets:
17
+ GH_TOKEN: ${{ secrets.GH_TOKEN }}
18
+ with:
19
+ node_version: 24
package/.releaserc.json CHANGED
@@ -10,12 +10,6 @@
10
10
  "npmPublish": false
11
11
  }
12
12
  ],
13
- [
14
- "@semantic-release/exec",
15
- {
16
- "publishCmd": "npm publish --provenance --access public"
17
- }
18
- ],
19
13
  [
20
14
  "@semantic-release/git",
21
15
  {
package/CHANGELOG.md CHANGED
@@ -1,3 +1,71 @@
1
+ ## [1.2.2](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.2.1...v1.2.2) (2026-01-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Move permissions back to parent level ([53e7846](https://github.com/vivekbiswas-tw/hello-world-npm/commit/53e7846a29c44faf8f7a4f35dbaccecc8e4486bb))
7
+ * Set permissions at nested yml level ([7fd7d1b](https://github.com/vivekbiswas-tw/hello-world-npm/commit/7fd7d1b0d80407f752a92399c2d84ccb2b0a0375))
8
+
9
+ ## [1.2.1](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.2.0...v1.2.1) (2026-01-07)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * Manually publish after version update ([e113abd](https://github.com/vivekbiswas-tw/hello-world-npm/commit/e113abd1cc0e2e282a6c77115c6787d6435194db))
15
+
16
+ # [1.2.0](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.1.1...v1.2.0) (2026-01-07)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * Bump version ([baedcb7](https://github.com/vivekbiswas-tw/hello-world-npm/commit/baedcb78d6e726f6b7d58639788d48405d204ab3))
22
+ * Bump version ([2654b49](https://github.com/vivekbiswas-tw/hello-world-npm/commit/2654b4934ce421c9467aa02c6818eb1cf5734039))
23
+ * Disable npm token ([dfa5214](https://github.com/vivekbiswas-tw/hello-world-npm/commit/dfa5214dfdc9feb6f0fafd5080690a93efa4e4c6))
24
+ * pipeline ([6c333a3](https://github.com/vivekbiswas-tw/hello-world-npm/commit/6c333a3537ebae0083135dbb6ca48adef4a0641b))
25
+ * Test RO token ([4b4a754](https://github.com/vivekbiswas-tw/hello-world-npm/commit/4b4a7542f0a6a2fd3ab313afaf0b2f712bf96001))
26
+ * Test RO token ([593baec](https://github.com/vivekbiswas-tw/hello-world-npm/commit/593baecc55163db216e928e061a44d2f8dcd06ff))
27
+
28
+
29
+ ### Features
30
+
31
+ * Modify configs ([c711dce](https://github.com/vivekbiswas-tw/hello-world-npm/commit/c711dce84062db5c12fb29e5c0c9a55ee2cd0b73))
32
+
33
+ # [1.2.0](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.1.1...v1.2.0) (2026-01-07)
34
+
35
+
36
+ ### Bug Fixes
37
+
38
+ * Disable npm token ([dfa5214](https://github.com/vivekbiswas-tw/hello-world-npm/commit/dfa5214dfdc9feb6f0fafd5080690a93efa4e4c6))
39
+ * pipeline ([6c333a3](https://github.com/vivekbiswas-tw/hello-world-npm/commit/6c333a3537ebae0083135dbb6ca48adef4a0641b))
40
+ * Test RO token ([4b4a754](https://github.com/vivekbiswas-tw/hello-world-npm/commit/4b4a7542f0a6a2fd3ab313afaf0b2f712bf96001))
41
+ * Test RO token ([593baec](https://github.com/vivekbiswas-tw/hello-world-npm/commit/593baecc55163db216e928e061a44d2f8dcd06ff))
42
+
43
+
44
+ ### Features
45
+
46
+ * Modify configs ([c711dce](https://github.com/vivekbiswas-tw/hello-world-npm/commit/c711dce84062db5c12fb29e5c0c9a55ee2cd0b73))
47
+
48
+ # [1.2.0](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.1.1...v1.2.0) (2026-01-07)
49
+
50
+
51
+ ### Bug Fixes
52
+
53
+ * Disable npm token ([dfa5214](https://github.com/vivekbiswas-tw/hello-world-npm/commit/dfa5214dfdc9feb6f0fafd5080690a93efa4e4c6))
54
+ * pipeline ([6c333a3](https://github.com/vivekbiswas-tw/hello-world-npm/commit/6c333a3537ebae0083135dbb6ca48adef4a0641b))
55
+ * Test RO token ([593baec](https://github.com/vivekbiswas-tw/hello-world-npm/commit/593baecc55163db216e928e061a44d2f8dcd06ff))
56
+
57
+
58
+ ### Features
59
+
60
+ * Modify configs ([c711dce](https://github.com/vivekbiswas-tw/hello-world-npm/commit/c711dce84062db5c12fb29e5c0c9a55ee2cd0b73))
61
+
62
+ ## [1.1.1](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.1.0...v1.1.1) (2026-01-07)
63
+
64
+
65
+ ### Bug Fixes
66
+
67
+ * Test RO token ([8e9b459](https://github.com/vivekbiswas-tw/hello-world-npm/commit/8e9b459ebd1a99f59d8932b28f9456b56dca8bed))
68
+
1
69
  # [1.1.0](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.0.9...v1.1.0) (2026-01-07)
2
70
 
3
71
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vb-test-org/hello-world-npm",
3
- "version": "1.1.0",
3
+ "version": "1.2.2",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "",