Skip to content

Commit aae2894

Browse files
ci: replace npx changelog call with npm script and fix prepare-release workflow
1 parent 02688b9 commit aae2894

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/prepare-release.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,14 @@ jobs:
3838
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3939
run: |
4040
# Run semantic-release with dry-run to detect version
41-
NEXT_VERSION=$(npx semantic-release --dry-run --verify-conditions false | tee /dev/stderr | awk '/The next release version is/{print $NF}')
41+
set -o pipefail
42+
if ! OUTPUT=$(npx semantic-release --dry-run --verify-conditions false --verify-release false 2>&1); then
43+
echo "$OUTPUT"
44+
echo "::error::semantic-release failed during version detection"
45+
exit 1
46+
fi
47+
echo "$OUTPUT"
48+
NEXT_VERSION=$(echo "$OUTPUT" | awk '/The next release version is/{print $NF}')
4249
echo "next=$NEXT_VERSION" >> $GITHUB_OUTPUT
4350
4451
- name: Update package.json
@@ -49,7 +56,7 @@ jobs:
4956

5057
- name: Update CHANGELOG.md
5158
if: steps.version.outputs.next != ''
52-
run: npx conventional-changelog-cli -p conventionalcommits -i CHANGELOG.md -s
59+
run: npm run update-changelog
5360

5461
- name: Create Pull Request
5562
if: steps.version.outputs.next != ''

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
"lint": "eslint .",
2323
"coverage": "nyc mocha --use_strict",
2424
"test": "mocha",
25-
"prepare": "husky"
25+
"prepare": "husky",
26+
"update-changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md"
2627
},
2728
"repository": {
2829
"type": "git",
@@ -54,7 +55,7 @@
5455
"@semantic-release/exec": "^7.0.3",
5556
"atob": "^2.1.2",
5657
"chai": "^4.1.2",
57-
"conventional-changelog": "~1.1.0",
58+
"conventional-changelog": "^7.2.1",
5859
"conventional-changelog-conventionalcommits": "^9.3.0",
5960
"eslint": "^4.19.1",
6061
"husky": "^9.1.7",

0 commit comments

Comments
 (0)