Add GitHub release step to CI

This commit is contained in:
François Voron
2022-10-18 08:59:08 +02:00
parent c42e95c24b
commit a199a6bed4

View File

@ -61,3 +61,10 @@ jobs:
run: |
hatch build
hatch publish
- name: Create release
uses: ncipollo/release-action@v1
with:
draft: true
body: ${{ github.event.head_commit.message }}
artifacts: dist/*.whl,dist/*.tar.gz
token: ${{ secrets.GITHUB_TOKEN }}