Skip to content

Commit

Permalink
github: Create GitHub releases automatically on tags.
Browse files Browse the repository at this point in the history
Fixes #85
  • Loading branch information
jrfonseca committed Dec 23, 2023
1 parent 20f8b76 commit a05b7bf
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,13 @@ jobs:
python -m build
twine check --strict dist/*
twine upload dist/*
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false
prerelease: false

0 comments on commit a05b7bf

Please sign in to comment.