Skip to content
This repository was archived by the owner on Dec 6, 2023. It is now read-only.

Commit 8a08e0d

Browse files
authored
Exclude egg files during uploading PyPI release and allow dev and post release tags (#195)
* Exclude egg files during uploading PyPI release * allow dev and post release tags
1 parent 76a3a68 commit 8a08e0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
tags:
8-
- '[0-9]+.[0-9]+.[0-9]+'
8+
- '[0-9]+.[0-9]+.[0-9]+*'
99
pull_request:
1010
branches:
1111
- master
@@ -137,4 +137,4 @@ jobs:
137137
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
138138
run: |
139139
pip install twine
140-
twine upload dist/*
140+
twine upload dist/*.whl dist/*.tar.gz

0 commit comments

Comments
 (0)