@hanseltime/template-repo-sync 2.0.2 → 2.0.4
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/release.yaml +4 -17
- package/CHANGELOG.md +14 -0
- package/package.json +1 -1
- package/release.config.js +1 -6
|
@@ -34,27 +34,14 @@ jobs:
|
|
|
34
34
|
node-version: 24.x
|
|
35
35
|
cache: "npm"
|
|
36
36
|
cache-dependency-path: package-lock.json
|
|
37
|
-
|
|
38
|
-
- name: Ensure npm supports Trusted Publishing
|
|
39
|
-
run: |
|
|
40
|
-
npm i -g npm@^11.5.1
|
|
41
|
-
npm --version
|
|
42
|
-
npm config set registry https://registry.npmjs.org/
|
|
43
37
|
- name: Install
|
|
44
38
|
run: npm ci
|
|
45
39
|
- name: Build
|
|
46
40
|
run: npm run build
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
unset NODE_AUTH_TOKEN
|
|
52
|
-
rm -f .npmrc
|
|
53
|
-
rm -f ~/.npmrc
|
|
41
|
+
- name: Release
|
|
42
|
+
run: npm run release
|
|
43
|
+
env:
|
|
44
|
+
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
|
|
54
45
|
- name: Test Run
|
|
55
46
|
run: |
|
|
56
47
|
npm publish --access public
|
|
57
|
-
# - name: Release
|
|
58
|
-
# run: npm run release
|
|
59
|
-
# env:
|
|
60
|
-
# GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.0.4](https://github.com/HanseltimeIndustries/template-repo-sync/compare/v2.0.3...v2.0.4) (2026-02-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* leave semantic release out of npm publish ([9c0d9a3](https://github.com/HanseltimeIndustries/template-repo-sync/commit/9c0d9a389faf34c944640a5a3fc153b038e61b1d))
|
|
7
|
+
|
|
8
|
+
## [2.0.3](https://github.com/HanseltimeIndustries/template-repo-sync/compare/v2.0.2...v2.0.3) (2026-02-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* trigger a new release ([807e84f](https://github.com/HanseltimeIndustries/template-repo-sync/commit/807e84f51eaca42a2607cfbb57d2d672fb84a511))
|
|
14
|
+
|
|
1
15
|
## [2.0.2](https://github.com/HanseltimeIndustries/template-repo-sync/compare/v2.0.1...v2.0.2) (2026-02-04)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
package/release.config.js
CHANGED
|
@@ -23,12 +23,7 @@ module.exports = {
|
|
|
23
23
|
"@semantic-release/npm",
|
|
24
24
|
{
|
|
25
25
|
npmPublish: false, // We just use this to increment the versions since semantic-release doesn't handle OIDC well
|
|
26
|
-
|
|
27
|
-
],
|
|
28
|
-
[
|
|
29
|
-
"@semantic-release/exec",
|
|
30
|
-
{
|
|
31
|
-
publishCmd: "npm publish --access public",
|
|
26
|
+
// Call the publish comand in the CI/CD
|
|
32
27
|
},
|
|
33
28
|
],
|
|
34
29
|
[
|