Skip to content

Commit d23dfd2

Browse files
committed
fix github release.yml workflow
1 parent c4842e1 commit d23dfd2

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,20 @@ jobs:
8080
uses: pypa/gh-action-pypi-publish@release/v1
8181
with:
8282
packages-dir: dist/
83+
84+
release:
85+
name: Release version
86+
runs-on: ubuntu-latest
87+
needs: [wait, build]
88+
89+
steps:
90+
- name: Create release
91+
id: create_release
92+
uses: actions/create-release@v1
93+
env:
94+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
95+
with:
96+
tag_name: ${{ github.ref }}
97+
release_name: ${{ github.ref }}
98+
draft: false
99+
prerelease: false

0 commit comments

Comments
 (0)