We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 729ba27 commit 45fa185Copy full SHA for 45fa185
.github/workflows/build_wheels_linux.yml
@@ -247,6 +247,15 @@ jobs:
247
${CONDA_RUN} python setup.py clean
248
echo "Successfully ran `python setup.py clean`"
249
${CONDA_RUN} python setup.py bdist_wheel
250
+ - name: Run Manylinux_2_28 rename command
251
+ shell: bash -l {0}
252
+ env:
253
+ PACKAGE_NAME: ${{ inputs.package-name }}
254
+ SMOKE_TEST_SCRIPT: ${{ inputs.smoke-test-script }}
255
+ run: |
256
+ set -euxo pipefail
257
+ source "${BUILD_ENV_FILE}"
258
+ for f in ${{ inputs.repository }}/dist/*.whl; do mv -nv "$f" "${f/-linux_/-manylinux_2_28_}"; done
259
- name: Run Post-Script
260
if: ${{ inputs.post-script != '' }}
261
uses: ./test-infra/.github/actions/run-script-with-cache
0 commit comments