Skip to content

Commit

Permalink
actions: downgrade artifacts plugin
Browse files Browse the repository at this point in the history
How much time thrown in the toilet...

Signed-off-by: Matteo Cafasso <[email protected]>
  • Loading branch information
noxdafox committed Jan 26, 2025
1 parent 29884ed commit 8be8633
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: |
docker run --rm -v `pwd`/manylinux/wheelhouse:/io/wheelhouse clipspy-build-wheels:latest
- name: Store build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: linux-build
path: manylinux/wheelhouse
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
cd ../
python -m pytest -v clipspy/test
- name: Store build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: windows-build
path: dist/
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
cd ../
python -m pytest -v clipspy/test
- name: Store build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: macos-intel-build
path: dist/
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
cd ../
python -m pytest -v clipspy/test
- name: Store build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: macos-arm-build
path: dist/
Expand All @@ -162,11 +162,11 @@ jobs:
needs: [build-macos-intel, build-macos-arm]
runs-on: macos-13
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: macos-intel-build
path: artifacts/
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: macos-arm-build
path: artifacts/
Expand All @@ -190,7 +190,7 @@ jobs:
delocate-fuse artifacts/clipspy-1.0.4-cp312-cp312-macosx_11_0_arm64.whl artifacts/clipspy-1.0.4-cp312-cp312-macosx_11_0_x86_64.whl -w dist/
rename "s/arm64/universal2/" dist/*.whl
- name: Store build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: macos-universal-build
path: dist/

0 comments on commit 8be8633

Please sign in to comment.