Skip to content

Commit

Permalink
Update CI release to produce wheels
Browse files Browse the repository at this point in the history
In addition to create source distributions, also create a wheel binary file so clients don't have to.
Speeds up user installation.
  • Loading branch information
miketheman authored and eerimoq committed Jul 24, 2023
1 parent 62b859b commit 2803daa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
- name: Install pypa/build
run: |
python -m pip install build --user
- name: Build a source tarball
- name: Build a source tarball and binary
run: |
git clean -dfx
python -m build --sdist --outdir dist/ .
python -m build --outdir dist/ .
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
Expand Down

0 comments on commit 2803daa

Please sign in to comment.