@vb-test-org/hello-world-npm 1.1.0 → 1.2.3

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,27 @@ 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
+ - name: Publish Build
31
+ 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,78 @@
1
+ ## [1.2.3](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.2.2...v1.2.3) (2026-01-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Remove the provenance variable ([03dd339](https://github.com/vivekbiswas-tw/hello-world-npm/commit/03dd339b6ef3be70a8bdff2150b7393b94112e91))
7
+
8
+ ## [1.2.2](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.2.1...v1.2.2) (2026-01-07)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Move permissions back to parent level ([53e7846](https://github.com/vivekbiswas-tw/hello-world-npm/commit/53e7846a29c44faf8f7a4f35dbaccecc8e4486bb))
14
+ * Set permissions at nested yml level ([7fd7d1b](https://github.com/vivekbiswas-tw/hello-world-npm/commit/7fd7d1b0d80407f752a92399c2d84ccb2b0a0375))
15
+
16
+ ## [1.2.1](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.2.0...v1.2.1) (2026-01-07)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * Manually publish after version update ([e113abd](https://github.com/vivekbiswas-tw/hello-world-npm/commit/e113abd1cc0e2e282a6c77115c6787d6435194db))
22
+
23
+ # [1.2.0](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.1.1...v1.2.0) (2026-01-07)
24
+
25
+
26
+ ### Bug Fixes
27
+
28
+ * Bump version ([baedcb7](https://github.com/vivekbiswas-tw/hello-world-npm/commit/baedcb78d6e726f6b7d58639788d48405d204ab3))
29
+ * Bump version ([2654b49](https://github.com/vivekbiswas-tw/hello-world-npm/commit/2654b4934ce421c9467aa02c6818eb1cf5734039))
30
+ * Disable npm token ([dfa5214](https://github.com/vivekbiswas-tw/hello-world-npm/commit/dfa5214dfdc9feb6f0fafd5080690a93efa4e4c6))
31
+ * pipeline ([6c333a3](https://github.com/vivekbiswas-tw/hello-world-npm/commit/6c333a3537ebae0083135dbb6ca48adef4a0641b))
32
+ * Test RO token ([4b4a754](https://github.com/vivekbiswas-tw/hello-world-npm/commit/4b4a7542f0a6a2fd3ab313afaf0b2f712bf96001))
33
+ * Test RO token ([593baec](https://github.com/vivekbiswas-tw/hello-world-npm/commit/593baecc55163db216e928e061a44d2f8dcd06ff))
34
+
35
+
36
+ ### Features
37
+
38
+ * Modify configs ([c711dce](https://github.com/vivekbiswas-tw/hello-world-npm/commit/c711dce84062db5c12fb29e5c0c9a55ee2cd0b73))
39
+
40
+ # [1.2.0](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.1.1...v1.2.0) (2026-01-07)
41
+
42
+
43
+ ### Bug Fixes
44
+
45
+ * Disable npm token ([dfa5214](https://github.com/vivekbiswas-tw/hello-world-npm/commit/dfa5214dfdc9feb6f0fafd5080690a93efa4e4c6))
46
+ * pipeline ([6c333a3](https://github.com/vivekbiswas-tw/hello-world-npm/commit/6c333a3537ebae0083135dbb6ca48adef4a0641b))
47
+ * Test RO token ([4b4a754](https://github.com/vivekbiswas-tw/hello-world-npm/commit/4b4a7542f0a6a2fd3ab313afaf0b2f712bf96001))
48
+ * Test RO token ([593baec](https://github.com/vivekbiswas-tw/hello-world-npm/commit/593baecc55163db216e928e061a44d2f8dcd06ff))
49
+
50
+
51
+ ### Features
52
+
53
+ * Modify configs ([c711dce](https://github.com/vivekbiswas-tw/hello-world-npm/commit/c711dce84062db5c12fb29e5c0c9a55ee2cd0b73))
54
+
55
+ # [1.2.0](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.1.1...v1.2.0) (2026-01-07)
56
+
57
+
58
+ ### Bug Fixes
59
+
60
+ * Disable npm token ([dfa5214](https://github.com/vivekbiswas-tw/hello-world-npm/commit/dfa5214dfdc9feb6f0fafd5080690a93efa4e4c6))
61
+ * pipeline ([6c333a3](https://github.com/vivekbiswas-tw/hello-world-npm/commit/6c333a3537ebae0083135dbb6ca48adef4a0641b))
62
+ * Test RO token ([593baec](https://github.com/vivekbiswas-tw/hello-world-npm/commit/593baecc55163db216e928e061a44d2f8dcd06ff))
63
+
64
+
65
+ ### Features
66
+
67
+ * Modify configs ([c711dce](https://github.com/vivekbiswas-tw/hello-world-npm/commit/c711dce84062db5c12fb29e5c0c9a55ee2cd0b73))
68
+
69
+ ## [1.1.1](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.1.0...v1.1.1) (2026-01-07)
70
+
71
+
72
+ ### Bug Fixes
73
+
74
+ * Test RO token ([8e9b459](https://github.com/vivekbiswas-tw/hello-world-npm/commit/8e9b459ebd1a99f59d8932b28f9456b56dca8bed))
75
+
1
76
  # [1.1.0](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.0.9...v1.1.0) (2026-01-07)
2
77
 
3
78
 
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.3",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "",