From 2b4fdf3f31fb2fc63eeaf207969531dc7ca42331 Mon Sep 17 00:00:00 2001 From: Per-Arne Andersen Date: Thu, 14 Dec 2023 14:47:36 +0100 Subject: [PATCH] Update build-wheels.yml --- .github/workflows/build-wheels.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index 074aec06..d7b5f2df 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -24,15 +24,15 @@ jobs: - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse - - name: Prefix wheels with branch name - if: startsWith(github.ref, 'refs/heads/') - run: | - branchName=${GITHUB_REF/refs\/heads\//} - for file in wheelhouse/*.whl; do - newName="${branchName}-$(basename $file)" - mv "$file" "wheelhouse/$newName" - done - shell: bash + #- name: Prefix wheels with branch name + # if: startsWith(github.ref, 'refs/heads/') + # run: | + # branchName=${GITHUB_REF/refs\/heads\//} + # for file in wheelhouse/*.whl; do + # newName="${branchName}-$(basename $file)" + # mv "$file" "wheelhouse/$newName" + # done + # shell: bash - uses: actions/upload-artifact@v2 with: