From f5603c6bd088cc7bc28dfa64c71e311d80e1776d Mon Sep 17 00:00:00 2001 From: Justin Bousquin Date: Wed, 21 Aug 2024 13:45:08 -0500 Subject: [PATCH] Update release.yml Build source and wheels --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8949a43..70d268d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,21 +25,21 @@ jobs: # path: ./wheelhouse/*.whl # build_sdist: - name: Build source distribution + name: Build source/wheel distribution runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: '3.11' - - name: build the sdist + - name: build dist run: | python -m pip install --upgrade build - python -m build --sdist + python -m build - uses: actions/upload-artifact@v4 with: name: cibw-sdist - path: dist/*.tar.gz + path: dist publish-to-pypi: needs: build_sdist