Skip to content

Commit

Permalink
Revert upload-artifact to v3
Browse files Browse the repository at this point in the history
upload-artifact v4 is broken for systems using matrix of versions. See actions/upload-artifact#478
  • Loading branch information
king-phyte committed Oct 25, 2024
1 parent a5432fe commit 219d374
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
pip3 install uuid_utils --no-index --find-links dist/ --force-reinstall
pytest -v .
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
pip3 install uuid_utils --no-index --find-links /io/dist/ --force-reinstall --break-system-packages
python3 -c "import uuid_utils"
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand All @@ -155,7 +155,7 @@ jobs:
manylinux: musllinux_1_2
args: --release --out dist -i 3.9 3.10 3.11 3.12 3.13
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
pip install pytest
pytest -v .
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
pip install pytest
pytest -v .
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand All @@ -236,7 +236,7 @@ jobs:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand Down

0 comments on commit 219d374

Please sign in to comment.