From bfa75529f028d3f201a8f77eaabdd8d6b4daeddb Mon Sep 17 00:00:00 2001 From: VenkateshJaya Date: Thu, 17 Apr 2025 18:04:41 -0700 Subject: [PATCH] Added package-name variable --- .github/workflows/wheels-build.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels-build.yaml b/.github/workflows/wheels-build.yaml index 46a39722..89884433 100644 --- a/.github/workflows/wheels-build.yaml +++ b/.github/workflows/wheels-build.yaml @@ -19,6 +19,10 @@ 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 @@ -26,7 +30,7 @@ on: 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 @@ -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: |