Skip to content

Commit

Permalink
chore: generate notes on release (#842)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-gilin authored Jun 16, 2024
1 parent 70e6b4f commit db1a7c0
Show file tree
Hide file tree
Showing 4 changed files with 250 additions and 84 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,15 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

# Generate changelog for the current release
- name: Generate Changelog
run: |
CHANGELOG=$(npx conventional-changelog -p angular -r 1)
echo "changelog=$CHANGELOG" >> $GITHUB_ENV
- name: Create Github Release
uses: softprops/action-gh-release@v1
with:
files: packages/*/*.vsix
fail_on_unmatched_files: true
fail_on_unmatched_files: true
body: ${{ env.changelog }}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"chai": "4.2.0",
"conventional-changelog-cli": "^5.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
Expand Down
1 change: 0 additions & 1 deletion packages/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@
"babel-eslint": "^10.0.1",
"babel-jest": "29.7.0",
"eslint-plugin-vue": "9.14.1",
"husky": "4.2.5",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-serializer-vue": "^2.0.2",
Expand Down
Loading

0 comments on commit db1a7c0

Please sign in to comment.