wheels: properly migrate to artifact@v4

This commit is contained in:
Mohamed Gaber 2024-10-07 20:17:05 +03:00
parent 43128f6283
commit d7cf0238fd
No known key found for this signature in database
1 changed files with 3 additions and 2 deletions

View File

@ -113,7 +113,7 @@ jobs:
CIBW_TEST_COMMAND: python3 -c "from pyosys import libyosys as ys;d=ys.Design();ys.run_pass('help', d)" CIBW_TEST_COMMAND: python3 -c "from pyosys import libyosys as ys;d=ys.Design();ys.run_pass('help', d)"
- uses: actions/upload-artifact@v4 - uses: actions/upload-artifact@v4
with: with:
name: python-wheels name: python-wheels-${{ matrix.os.runner }}
path: ./wheelhouse/*.whl path: ./wheelhouse/*.whl
upload_wheels: upload_wheels:
name: Upload Wheels name: Upload Wheels
@ -122,8 +122,9 @@ jobs:
steps: steps:
- uses: actions/download-artifact@v4 - uses: actions/download-artifact@v4
with: with:
name: python-wheels
path: "." path: "."
pattern: python-wheels-*
merge-multiple: true
- run: | - run: |
ls ls
mkdir -p ./dist mkdir -p ./dist