Skip to content

Commit

Permalink
CI: ensure, that upload and download artifact actions are compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
vlaci committed Oct 13, 2024
1 parent 519671d commit 6ec6b9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:
args: --verbose --release --out dist
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: dist
Expand All @@ -222,7 +222,7 @@ jobs:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: dist
Expand All @@ -233,7 +233,7 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/')"
needs: [build-nix, wheel-linux, wheel-macos, sdist]
steps:
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
name: wheels
- name: Publish to PyPI
Expand Down

0 comments on commit 6ec6b9a

Please sign in to comment.