Skip to content

Commit

Permalink
ci: publish GitHub release as well (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
artemrys committed Dec 21, 2022
1 parent 44ca384 commit 76b1c19
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
release:
pypi_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -19,3 +19,11 @@ jobs:
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
gh_release:
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- run: |
gh release create ${{ github.ref_name }} --generate-notes

0 comments on commit 76b1c19

Please sign in to comment.