Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
Build source and wheels
  • Loading branch information
jbousquin authored Aug 21, 2024
1 parent 6730473 commit f5603c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f5603c6

Please sign in to comment.