Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,8 @@ jobs:
uv pip install "${WHL_FILE}[dev]"
npm run test
shell: bash
- name: Upload built distributions
uses: actions/upload-artifact@v4
with:
name: package-distributions
path: dist/
6 changes: 5 additions & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Download built distributions
uses: actions/download-artifact@v4
with:
name: package-distributions
path: dist/
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ jobs:
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Download built distributions
uses: actions/download-artifact@v4
with:
name: package-distributions
path: dist/
- name: Upload GitHub Release
uses: ncipollo/release-action@v1
with:
Expand Down