Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/wheels-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,18 @@ on:
script:
required: true
type: string
package-name:
required: false
type: string
description: "Distribution name, without any other qualifiers (e.g. 'pylibcudf', not 'pylibcudf-cu12-cp311-manylinux_2_24_aarch64')"
package-type:
description: "One of: [cpp, python]"
required: false
type: string
wheel-name:
required: false
type: string
description: "Distribution name, without any other qualifiers (e.g. 'pylibcudf', not 'pylibcudf-cu12-cp311-manylinux_2_24_aarch64')"
description: "DEPRECATED: Use package-name instead"
pure-wheel:
required: false
type: boolean
Expand Down Expand Up @@ -199,7 +203,7 @@ jobs:
if: inputs.package-type != ''
env:
PACKAGE_TYPE: ${{ inputs.package-type }}
WHEEL_NAME: ${{ inputs.wheel-name }}
WHEEL_NAME: ${{ inputs.package-name != '' && inputs.package-name || inputs.wheel-name }}
PURE_WHEEL: ${{ inputs.pure-wheel }}
APPEND_CUDA_SUFFIX: ${{ inputs.append-cuda-suffix }}
run: |
Expand Down