Skip to content

Commit

Permalink
added github action to automatically make release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
TeunHuijben committed Jan 23, 2025
1 parent d47f9d7 commit 76063d0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/python-lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,15 @@ jobs:
cd python
python -m build .
twine upload dist/*
create-github-release:
name: Create GitHub Release
if: startsWith(github.ref, 'refs/tags')
needs: [test, build-and-deploy]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create GitHub Release with Notes
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true

0 comments on commit 76063d0

Please sign in to comment.