Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build-and-publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.10"
# We only build a source distribution because binary distributions for Linux can't be uploaded
# to PyPI. Our source distribution is trivial to build anyway.
- name: Build the source tarball
run: |
python -m pip install build
python -m build
python -m build --sdist
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
Expand Down
Loading