Skip to content

Commit da63fe2

Browse files
committed
create tag
1 parent 81c2180 commit da63fe2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,13 @@ jobs:
3636
python -m pip install -e .
3737
python -m pip install build
3838
python -m build
39-
39+
- name: Create Beta Release
40+
id: create_release
41+
if: github.event_name == 'push'
42+
uses: softprops/action-gh-release@v2
43+
with:
44+
tag_name: v${{ steps.set-version.outputs.version }}
45+
prerelease: ${{ github.event_name != 'release' }}
4046
- name: Publish release distributions to PyPI
4147
uses: pypa/gh-action-pypi-publish@release/v1
4248
with:

0 commit comments

Comments
 (0)