From 962fd9b785bd839ed77b35bbd7f50ec92c6f80db Mon Sep 17 00:00:00 2001 From: Leonardo Castorina Date: Fri, 15 Dec 2023 12:28:38 +0000 Subject: [PATCH] Add python wheels as artifacts --- .github/workflows/python-build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/python-build.yml b/.github/workflows/python-build.yml index 4794d69..18b0412 100644 --- a/.github/workflows/python-build.yml +++ b/.github/workflows/python-build.yml @@ -36,3 +36,13 @@ jobs: run: | pip install wheel python setup.py bdist_wheel + - name: Build source distribution + run: | + python setup.py sdist + - name: Upload wheel and source distribution + uses: actions/upload-artifact@v3 + with: + name: python-package + path: | + dist/*.whl + dist/*.tar.gz