Skip to content

Commit 7f51d28

Browse files
committed
Update publish action to upload also binary dist
Fixes #326 Signed-off-by: Simo Sorce <simo@redhat.com>
1 parent 5dc2ea2 commit 7f51d28

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/publish-to-pypi.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@
2121
{ "run": "sudo apt-get install cargo" },
2222
{ "run": "pip --version" },
2323
{ "run": "python setup.py sdist" },
24+
{ "run": "python setup.py bdist_wheel" },
2425
{
2526
"uses": "pypa/gh-action-pypi-publish@release/v1",
2627
"with": {
2728
"user": "__token__",
2829
"password": "${{secrets.PYPI_API_TOKEN}}",
30+
"skip-existing": true,
2931
},
3032
},
3133
],

0 commit comments

Comments
 (0)