@vb-test-org/hello-world-npm 1.2.2 → 1.2.6
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.
- package/.github/workflows/publish.yml +5 -1
- package/CHANGELOG.md +28 -0
- package/package.json +1 -1
|
@@ -12,6 +12,11 @@ on:
|
|
|
12
12
|
jobs:
|
|
13
13
|
publish-npm:
|
|
14
14
|
runs-on: ubuntu-latest
|
|
15
|
+
permissions:
|
|
16
|
+
contents: write
|
|
17
|
+
issues: write
|
|
18
|
+
pull-requests: write
|
|
19
|
+
id-token: write
|
|
15
20
|
steps:
|
|
16
21
|
- uses: actions/checkout@v4
|
|
17
22
|
with:
|
|
@@ -27,6 +32,5 @@ jobs:
|
|
|
27
32
|
run: npx semantic-release
|
|
28
33
|
env:
|
|
29
34
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
30
|
-
NPM_CONFIG_PROVENANCE: true
|
|
31
35
|
- name: Publish Build
|
|
32
36
|
run: npm publish --access public
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## [1.2.6](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.2.5...v1.2.6) (2026-01-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Dummy commit ([d611913](https://github.com/vivekbiswas-tw/hello-world-npm/commit/d611913844179f72007ed81d958ed3700c1f6de3))
|
|
7
|
+
|
|
8
|
+
## [1.2.5](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.2.4...v1.2.5) (2026-01-07)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Add permissions at nested yml ([ec34933](https://github.com/vivekbiswas-tw/hello-world-npm/commit/ec3493344a5aecd02df1cbdd246e855084354732))
|
|
14
|
+
|
|
15
|
+
## [1.2.4](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.2.3...v1.2.4) (2026-01-07)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* Test deployment with publish.yml ([c06c666](https://github.com/vivekbiswas-tw/hello-world-npm/commit/c06c666f16a3bff5f9c60b24bbf0d6efa3f1434e))
|
|
21
|
+
|
|
22
|
+
## [1.2.3](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.2.2...v1.2.3) (2026-01-07)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* Remove the provenance variable ([03dd339](https://github.com/vivekbiswas-tw/hello-world-npm/commit/03dd339b6ef3be70a8bdff2150b7393b94112e91))
|
|
28
|
+
|
|
1
29
|
## [1.2.2](https://github.com/vivekbiswas-tw/hello-world-npm/compare/v1.2.1...v1.2.2) (2026-01-07)
|
|
2
30
|
|
|
3
31
|
|