Skip to content

Commit

Permalink
chore: fix up;oad/download artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Secbone committed Oct 30, 2024
1 parent ba5a871 commit 86aeaf3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- run: pip install .[all]
- run: make test
- run: make dist_wheel
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: wheel
path: dist/*.whl
Expand All @@ -34,7 +34,7 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/tags') || github.ref == 'refs/heads/release' }}
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: wheel
path: dist/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- run: pip install .[all]
- run: make test
- run: make dist_wheel
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: wheel
path: dist/*.whl
Expand All @@ -34,7 +34,7 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/tags') || github.ref == 'refs/heads/release' }}
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: wheel
path: dist/
Expand Down

0 comments on commit 86aeaf3

Please sign in to comment.