diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index 2cf420f..3e9b497 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -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 @@ -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 @@ -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