Skip to content

Commit

Permalink
Add release step
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertoBochet committed Jul 19, 2024
1 parent d146a0a commit 7ef0348
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,27 @@ jobs:
poetry build
- name: pypi-publish
uses: pypa/[email protected]
- uses: actions/upload-artifact@v4
with:
name: python-packages
path: |
dist/*.tar.gz
dist/*.whl
create-release:
name: "Create release on GitHub"
runs-on: ubuntu-latest
needs: publish-python-package
permissions:
contents: write
steps:
- uses: actions/download-artifact@v4
with:
name: python-packages
- uses: softprops/action-gh-release@v2
with:
files: |
*.tar.gz
*.whl
generate_release_notes: true
make_latest: true

0 comments on commit 7ef0348

Please sign in to comment.