We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67d05fc commit 09abe80Copy full SHA for 09abe80
1 file changed
.github/workflows/release.yml
@@ -6,23 +6,11 @@ jobs:
6
build:
7
runs-on: ubuntu-latest
8
steps:
9
- - name: Checkout code
+ - name: Checkout
10
uses: actions/checkout@v4
11
-
12
- - name: Set up Node.js
13
- uses: actions/setup-node@v4
14
- with:
15
- node-version: 20
16
17
- - name: Install dependencies
18
- run: npm install
19
20
- - name: Generate release notes
21
- run: npx conventional-changelog-cli -p angular -r 1 -o RELEASE_BODY.md
22
23
- name: Release
24
uses: softprops/action-gh-release@v2
25
if: github.ref_type == 'tag'
26
with:
27
- body_path: RELEASE_BODY.md
28
token: ${{ secrets.PERSONAL_TOKEN }}
+ generate_release_notes: true
0 commit comments