diff --git a/.github/workflows/wheels-build.yaml b/.github/workflows/wheels-build.yaml index 89884433..225aa288 100644 --- a/.github/workflows/wheels-build.yaml +++ b/.github/workflows/wheels-build.yaml @@ -20,17 +20,13 @@ on: required: true type: string package-name: - required: false + required: true 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 + required: true type: string - description: "DEPRECATED: Use package-name instead" pure-wheel: required: false type: boolean @@ -200,10 +196,9 @@ jobs: shell: bash -leo pipefail {0} - name: Get package name - if: inputs.package-type != '' env: PACKAGE_TYPE: ${{ inputs.package-type }} - WHEEL_NAME: ${{ inputs.package-name != '' && inputs.package-name || inputs.wheel-name }} + WHEEL_NAME: ${{ inputs.package-name }} PURE_WHEEL: ${{ inputs.pure-wheel }} APPEND_CUDA_SUFFIX: ${{ inputs.append-cuda-suffix }} run: | @@ -224,13 +219,11 @@ jobs: id: package-name - name: Show files to be uploaded - if: inputs.package-type != '' run: | echo "Contents of directory to be uploaded:" ls -R ${{ steps.package-name.outputs.WHEEL_OUTPUT_DIR }} - uses: actions/upload-artifact@v4 - if: inputs.package-type != '' with: name: ${{ steps.package-name.outputs.RAPIDS_PACKAGE_NAME }} path: ${{ steps.package-name.outputs.WHEEL_OUTPUT_DIR }}