Skip to content

Commit

Permalink
Fix upload/download-artifact all v4
Browse files Browse the repository at this point in the history
  • Loading branch information
milesgranger committed Sep 5, 2024
1 parent 94a6f9a commit 53a237f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ jobs:
venv/bin/python -c 'import cramjam'
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ ( startsWith(github.ref, 'refs/heads/master') || startsWith(github.ref, 'refs/tags/') ) }}
with:
name: dist
Expand All @@ -272,7 +272,7 @@ jobs:
python -m pip install build
python -m build --sdist -o ./dist
- name: Upload sdists
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
Expand All @@ -290,7 +290,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
name: dist
- name: List artifacts
Expand All @@ -309,7 +309,7 @@ jobs:
needs: [build-test, build-sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
name: dist
- name: List artifacts
Expand Down

0 comments on commit 53a237f

Please sign in to comment.