Skip to content

Commit 7131547

Browse files
committed
Try again with artifact names
1 parent 00611f1 commit 7131547

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
1414
fi
1515

1616
echo "::group::Install a virtualenv"
17+
echo "PLAT: $PLAT; uname: $(uname -m)"
1718
source multibuild/common_utils.sh
1819
source multibuild/travis_steps.sh
1920
before_install
2021
export TEST_DEPENDS=$(python ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR} -p test)
2122
echo "TEST_DEPENDS: $TEST_DEPENDS"
22-
echo "PLAT: $PLAT; uname: $(uname -m)"
2323
echo "::endgroup::"
2424

2525
echo "::group::Build wheel"

.github/workflows/wheels-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
run: .github/workflows/build.sh
6363
- uses: actions/upload-artifact@v4
6464
with:
65-
name: ${{ inputs.artifacts-name }}-${{ matrix.runs-on }}-${{ matrix.strategy.platform }}-${{ matrix.strategy.python }}
65+
name: ${{ inputs.artifacts-name }}-${{ matrix.platform }}-${{ matrix.python }}
6666
path: wheelhouse/*.whl
6767
# Uncomment to get SSH access for testing
6868
# - name: Setup tmate session

.github/workflows/wheels-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: .github/workflows/build.sh
4646
- uses: actions/upload-artifact@v4
4747
with:
48-
name: ${{ inputs.artifacts-name }}-${{ matrix.runs-on }}-${{ matrix.strategy.platform }}-${{ matrix.strategy.python }}
48+
name: ${{ inputs.artifacts-name }}-${{ matrix.platform }}-${{ matrix.python }}
4949
path: wheelhouse/*.whl
5050
# Uncomment to get SSH access for testing
5151
# - name: Setup tmate session

.github/workflows/wheels-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: .github/workflows/build.ps1
4343
- uses: actions/upload-artifact@v4
4444
with:
45-
name: ${{ inputs.artifacts-name }}-${{ matrix.runs-on }}-${{ matrix.strategy.platform }}-${{ matrix.strategy.python }}
45+
name: ${{ inputs.artifacts-name }}-${{ matrix.platform }}-${{ matrix.python }}
4646
path: wheelhouse/*.whl
4747
# Uncomment to get SSH access for testing
4848
# - name: Setup tmate session

.github/workflows/wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ jobs:
1111
uses: ./.github/workflows/wheels-macos.yml
1212
with:
1313
build-commit: "HEAD"
14-
artifacts-name: "wheels"
14+
artifacts-name: "macos-wheels"
1515

1616
linux:
1717
uses: ./.github/workflows/wheels-linux.yml
1818
with:
1919
build-commit: "HEAD"
20-
artifacts-name: "wheels"
20+
artifacts-name: "manylinux-wheels"
2121

2222
windows:
2323
uses: ./.github/workflows/wheels-windows.yml
2424
with:
2525
build-commit: "HEAD"
26-
artifacts-name: "wheels"
26+
artifacts-name: "windows-wheels"
2727

2828
release:
2929
name: Create Release

0 commit comments

Comments
 (0)