@networkpro/blog 1.3.4 → 1.3.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.
- package/.github/workflows/publish.yml +2 -2
- package/CHANGELOG.md +19 -1
- package/package.json +1 -1
|
@@ -199,11 +199,11 @@ jobs:
|
|
|
199
199
|
NODE_AUTH_TOKEN: ${{ secrets.NWPRO_GPR }}
|
|
200
200
|
|
|
201
201
|
- name: Verify npm authentication
|
|
202
|
-
run: npm whoami
|
|
202
|
+
run: npm whoami --registry=https://npm.pkg.github.com/
|
|
203
203
|
env:
|
|
204
204
|
NODE_AUTH_TOKEN: ${{ secrets.NWPRO_GPR }}
|
|
205
205
|
|
|
206
206
|
- name: Publish package to GPR
|
|
207
|
-
run: npm publish
|
|
207
|
+
run: npm publish --registry=https://npm.pkg.github.com/
|
|
208
208
|
env:
|
|
209
209
|
NODE_AUTH_TOKEN: ${{ secrets.NWPRO_GPR }}
|
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,22 @@ formatting may vary.
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
+
## [1.3.5] - 2025-06-24
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Bumped version to `v1.3.5`.
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- Resolved remaining GitHub Packages authentication issues by explicitly scoping
|
|
28
|
+
`npm whoami` and `npm publish` to the correct registry
|
|
29
|
+
(`https://npm.pkg.github.com/`).
|
|
30
|
+
- Ensured consistent registry usage regardless of `.npmrc` or `package.json`
|
|
31
|
+
configuration.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
19
35
|
## [1.3.4] - 2025-06-23
|
|
20
36
|
|
|
21
37
|
### Changed
|
|
@@ -144,7 +160,9 @@ formatting may vary.
|
|
|
144
160
|
|
|
145
161
|
<!-- Link references -->
|
|
146
162
|
|
|
147
|
-
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.3.
|
|
163
|
+
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.3.5...HEAD
|
|
164
|
+
[1.3.5]: https://github.com/netwk-pro/blog/releases/tag/v1.3.5
|
|
165
|
+
[1.3.4]: https://github.com/netwk-pro/blog/releases/tag/v1.3.4
|
|
148
166
|
[1.3.3]: https://github.com/netwk-pro/blog/releases/tag/v1.3.3
|
|
149
167
|
[1.3.2]: https://github.com/netwk-pro/blog/releases/tag/v1.3.2
|
|
150
168
|
[1.3.1]: https://github.com/netwk-pro/blog/releases/tag/v1.3.1
|