From 740d501c436c13bbf959c514b15d7195a977256c Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 5 Mar 2024 12:40:36 -0500 Subject: [PATCH] Update publish action to upload also binary dist Fixes #326 Signed-off-by: Simo Sorce --- .github/workflows/publish-to-pypi.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 88b7232..37a341f 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -21,11 +21,13 @@ { "run": "sudo apt-get install cargo" }, { "run": "pip --version" }, { "run": "python setup.py sdist" }, + { "run": "python setup.py bdist_wheel" }, { "uses": "pypa/gh-action-pypi-publish@release/v1", "with": { "user": "__token__", "password": "${{secrets.PYPI_API_TOKEN}}", + "skip-existing": true, }, }, ],