Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jjbayer committed Feb 4, 2025
1 parent b17226e commit f0c2450
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: artifact-linux-${{ matrix.target }}
name: artifact-linux-${{ matrix.build-arch }}
path: py/dist/*
if-no-files-found: "error"
# since this artifact will be merged, compression is not necessary
Expand All @@ -87,9 +87,9 @@ jobs:

- run: make sdist

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4
with:
name: artifact-sdist-${{ matrix.target }}
name: artifact-sdist
path: py/dist/*
if-no-files-found: "error"
# since this artifact will be merged, compression is not necessary
Expand All @@ -98,7 +98,7 @@ jobs:
merge:
name: Create Release Artifact
runs-on: ubuntu-latest
needs: [linux, macos, sdist]
needs: [python-wheel-linux, python-wheel-mac, sdist]
steps:
- uses: actions/upload-artifact/merge@v4
with:
Expand Down

0 comments on commit f0c2450

Please sign in to comment.