Skip to content

Commit

Permalink
updated action/artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
fradav committed Oct 7, 2024
1 parent a20e3ea commit 06dd8aa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:
if: matrix.os == 'windows-latest'
- name: Build wheels
uses: pypa/[email protected]
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl
build_sdist:
Expand All @@ -219,11 +219,11 @@ jobs:
run: |
pip install setuptools cmake ninja cmaketools wheel
python setup.py sdist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: failure()
with:
path: dist/*.tar.gz
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
path: dist/*.tar.gz
upload_pypi:
Expand All @@ -235,7 +235,7 @@ jobs:
# alternatively, to publish when a GitHub Release is created, use the following rule:
# if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
Expand Down

0 comments on commit 06dd8aa

Please sign in to comment.