Skip to content

Commit

Permalink
add changelog generation to release ci
Browse files Browse the repository at this point in the history
  • Loading branch information
LoricAndre committed Nov 26, 2024
1 parent f93389f commit 7f54f5d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ jobs:
path: artifacts
pattern: "*"
merge-multiple: true
- run: ls -R
- name: Checkout Git repo
uses: actions/checkout@v4
- name: Update CHANGELOG
id: changelog
uses: requarks/changelog-action@v1
Expand All @@ -129,3 +130,10 @@ jobs:
body: ${{ steps.changelog.outputs.changes }}
artifacts: |
artifacts/**
- name: Push updated CHANGELOG
run: |
git config user.email 'skim-release@skim-rs.github.io'
git config user.name 'skim release action'
git add CHANGELOG.md
git commit -m 'update CHANGELOG.md after release ${{ github.ref_name }}'
git push origin test-ci

0 comments on commit 7f54f5d

Please sign in to comment.