Skip to content

Commit

Permalink
Try again with artifact names
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-brett committed Oct 5, 2024
1 parent 00611f1 commit 7131547
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
fi

echo "::group::Install a virtualenv"
echo "PLAT: $PLAT; uname: $(uname -m)"
source multibuild/common_utils.sh
source multibuild/travis_steps.sh
before_install
export TEST_DEPENDS=$(python ./print_deps.py ${MB_PYTHON_VERSION} ${REPO_DIR} -p test)
echo "TEST_DEPENDS: $TEST_DEPENDS"
echo "PLAT: $PLAT; uname: $(uname -m)"
echo "::endgroup::"

echo "::group::Build wheel"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
run: .github/workflows/build.sh
- uses: actions/upload-artifact@v4
with:
name: ${{ inputs.artifacts-name }}-${{ matrix.runs-on }}-${{ matrix.strategy.platform }}-${{ matrix.strategy.python }}
name: ${{ inputs.artifacts-name }}-${{ matrix.platform }}-${{ matrix.python }}
path: wheelhouse/*.whl
# Uncomment to get SSH access for testing
# - name: Setup tmate session
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: .github/workflows/build.sh
- uses: actions/upload-artifact@v4
with:
name: ${{ inputs.artifacts-name }}-${{ matrix.runs-on }}-${{ matrix.strategy.platform }}-${{ matrix.strategy.python }}
name: ${{ inputs.artifacts-name }}-${{ matrix.platform }}-${{ matrix.python }}
path: wheelhouse/*.whl
# Uncomment to get SSH access for testing
# - name: Setup tmate session
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: .github/workflows/build.ps1
- uses: actions/upload-artifact@v4
with:
name: ${{ inputs.artifacts-name }}-${{ matrix.runs-on }}-${{ matrix.strategy.platform }}-${{ matrix.strategy.python }}
name: ${{ inputs.artifacts-name }}-${{ matrix.platform }}-${{ matrix.python }}
path: wheelhouse/*.whl
# Uncomment to get SSH access for testing
# - name: Setup tmate session
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ jobs:
uses: ./.github/workflows/wheels-macos.yml
with:
build-commit: "HEAD"
artifacts-name: "wheels"
artifacts-name: "macos-wheels"

linux:
uses: ./.github/workflows/wheels-linux.yml
with:
build-commit: "HEAD"
artifacts-name: "wheels"
artifacts-name: "manylinux-wheels"

windows:
uses: ./.github/workflows/wheels-windows.yml
with:
build-commit: "HEAD"
artifacts-name: "wheels"
artifacts-name: "windows-wheels"

release:
name: Create Release
Expand Down

0 comments on commit 7131547

Please sign in to comment.