Skip to content

Commit

Permalink
CI: Use latest version of upload-artifact to hopefully avoid spurious…
Browse files Browse the repository at this point in the history
… "an

artifact with this name already exists on the workflow run" errors
  • Loading branch information
pauldmccarthy committed Nov 14, 2024
1 parent 3d75e6e commit fc57792
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Build sdist
run: python setup.py sdist

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.4.3
with:
name: sdist
path: ./dist/*.tar.gz
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Build wheels
run: bash ./.ci/build_wheels.sh

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.4.3
with:
name: wheels
path: ./dist/*.whl
Expand All @@ -76,7 +76,7 @@ jobs:
run: bash ./.ci/download_zlib.sh
- name: Build wheels
run: bash ./.ci/build_wheels.sh
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.4.3
with:
name: wheels
path: ./dist/*.whl
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
uses: docker/setup-qemu-action@v3
- name: Build wheels
run: bash ./.ci/build_wheels.sh
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.4.3
with:
name: wheels
path: ./dist/*.whl
Expand Down

0 comments on commit fc57792

Please sign in to comment.