Skip to content

Commit

Permalink
refer to artifact name without extension
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed Dec 4, 2023
1 parent bcd1de9 commit 9aa10cf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
path: ./dist/*.tar.gz
name: sdist.build
name: sdist

manylinux:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
name: ${{ matrix.python }}-manylinux_${{ matrix.platform }}.build
name: ${{ matrix.python }}-manylinux_${{ matrix.platform }}

- name: Set final commit status
uses: myrotvorets/[email protected]
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
- name: Save macOS wheel
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.python }}-macosx_x86_64.build
name: ${{ matrix.python }}-macosx_x86_64
path: wheelhouse/*.whl

- name: Set final commit status
Expand Down Expand Up @@ -329,7 +329,7 @@ jobs:
- name: Save macOS wheel
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.python-version }}-macosx_arm64.build
name: ${{ matrix.python-version }}-macosx_arm64
path: wheelhouse/*.whl

- name: Stop server
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/stage-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:

# - uses: actions/download-artifact@v3
# with:
# name: sdist.build
# name: sdist

# - name: Run distro container
# run: docker run --name ${{ matrix.distros[1] }} --network host --detach ${{ matrix.distros[0] }} tail -f /dev/null
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:

# - uses: actions/download-artifact@v3
# with:
# name: ${{ matrix.python-version[1] }}-manylinux_${{ matrix.platform[0] }}.build
# name: ${{ matrix.python-version[1] }}-manylinux_${{ matrix.platform[0] }}

# - name: Set up QEMU for cross compiling arm64
# if: ${{ matrix.platform[0] == 'aarch64' }}
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:

# - uses: actions/download-artifact@v3
# with:
# name: ${{ matrix.python-version[1] }}-manylinux_${{ matrix.platform[0] }}.build
# name: ${{ matrix.python-version[1] }}-manylinux_${{ matrix.platform[0] }}

# - uses: ./.github/actions/run-ee-server
# with:
Expand Down Expand Up @@ -280,7 +280,7 @@ jobs:
# # Ubuntu 22.04 uses Python 3.10 by default
# - uses: actions/download-artifact@v3
# with:
# name: cp310-manylinux_${{ matrix.platform[0] }}.build
# name: cp310-manylinux_${{ matrix.platform[0] }}

# - name: Set up QEMU for cross compiling arm64
# if: ${{ matrix.platform[0] == 'aarch64' }}
Expand Down Expand Up @@ -348,7 +348,7 @@ jobs:

# - uses: actions/download-artifact@v3
# with:
# name: ${{ matrix.python-version[1] }}-macosx_x86_64.build
# name: ${{ matrix.python-version[1] }}-macosx_x86_64

# - uses: actions/setup-python@v4
# with:
Expand Down

0 comments on commit 9aa10cf

Please sign in to comment.