Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Li <adam2392@gmail.com>
  • Loading branch information
adam2392 committed Jun 24, 2024
1 parent d9b7209 commit 48c0cd4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/
# name: ${{ matrix.python[0] }}-${{ matrix.os[1] }}
name: ${{ matrix.python[0] }}-${{ matrix.os[1] }}

build-wheels-m1:
name: Build wheels on Arm M1 with Python ${{ matrix.python[0] }}
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse
# name: ${{ matrix.python[0] }}-arm
name: ${{ matrix.python[0] }}-arm

# Build the source distribution under Linux
build_sdist:
Expand All @@ -153,8 +153,8 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.python[0] }}-${{ matrix.os[1] }}
path: dist
# name: ${{ matrix.python[0] }}-${{ matrix.os[1] }}

merge-wheels:
name: Merge all wheels into one directory
Expand All @@ -170,7 +170,9 @@ jobs:
- name: Merge files
run: |
mkdir dist
mv all/* ./dist
mv all/**/*.whl ./dist
mv all/**/*.tar.gz ./dist
- uses: actions/upload-artifact@v4
with:
path: dist
Expand Down

0 comments on commit 48c0cd4

Please sign in to comment.