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
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ jobs:
- name: Build wheel and sdist
run: python -m build

- name: Upload dist artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/

- name: Install package for SBOM
run: pip install dist/*.whl

Expand Down Expand Up @@ -61,12 +67,6 @@ jobs:
sbom.json.sig
sbom.json.pem

- name: Upload dist artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/

publish-to-pypi:
name: Publish to PyPI
needs: build
Expand Down
Loading