Skip to content

Commit

Permalink
actions: only upload wheels
Browse files Browse the repository at this point in the history
`overwrite` configuration on `actions/upload-artifact` does not work
as intended as it does not really "overwrite" a file but it first
deletes it and then upload the new copy. Obviously, this does not work
on parallel builds.

If only devs would learn english...
  • Loading branch information
noxdafox committed Feb 4, 2025
1 parent 613d342 commit ca24202
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: windows-build
path: dist/
path: dist/*.whl
overwrite: true

build-macos-intel:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: macos-intel-build
path: dist/
path: dist/*.whl
overwrite: true

build-macos-arm:
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: macos-arm-build
path: dist/
path: dist/*.whl
overwrite: true

build-macos-universal:
Expand Down Expand Up @@ -198,5 +198,5 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: macos-universal-build
path: dist/
path: dist/*.whl
overwrite: true

0 comments on commit ca24202

Please sign in to comment.