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
8 changes: 4 additions & 4 deletions .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Upload sdist artifact
uses: actions/upload-artifact@v4
with:
name: sdist
name: sdist-${{ github.run_id }}
path: target/wheels/*.tar.gz
compression-level: 9
overwrite: true
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
- name: Upload wheel artifact
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ github.run_id }}
path: target/wheels/*.whl
compression-level: 9
overwrite: true
Expand Down Expand Up @@ -234,8 +234,8 @@ jobs:
- name: Merge all wheels and source distributions into `output/`
run: |
mkdir -p output
mv root/wheels/*.whl output/
mv root/sdist/*.tar.gz output/
mv root/wheels-${{ github.run_id }}/*.whl output/ || true
mv root/sdist-${{ github.run_id }}/*.tar.gz output/ || true
ls -l output/

- name: Dry run output
Expand Down
Loading