From 81764681a02b35445a3e2efef85b2a518ed1b89f Mon Sep 17 00:00:00 2001 From: Armen Zambrano G Date: Thu, 9 Sep 2021 10:09:17 -0400 Subject: [PATCH] Try again --- .github/workflows/packages.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 67c83acc..ef161d7e 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -150,7 +150,6 @@ jobs: HOMEBREW_NO_AUTO_UPDATE: 1 run: | brew services start postgresql - mkdir repaired_wheels # This builds all possible Python versions (currently, 3.8 to 3.10) - uses: pypa/cibuildwheel@v2.1.1 @@ -159,18 +158,17 @@ jobs: CIBW_ARCHS: arm64 # This changes the default in order to place the wheel in "repaired_wheels" # The -w argument requires an absolute path - CIBW_REPAIR_WHEEL_COMMAND: "delocate-listdeps {wheel} && delocate-wheel --require-archs {delocate_archs} -w ${{ github.workspace}}/repaired_wheels {wheel}" + # CIBW_REPAIR_WHEEL_COMMAND: "delocate-listdeps {wheel} && delocate-wheel --require-archs {delocate_archs} -w ${{ github.workspace}}/repaired_wheels {wheel}" # This allows substitution within setup.py PACKAGE_NAME: psycopg2-binary - run: | ls -l ls -l dist - ls -l repaired_wheels + ls -l wheelhouse - name: Upload artifacts uses: actions/upload-artifact@v2 with: name: packages_macos_arm64 - path: | - repaired_wheels/*.whl + path: ./wheelhouse/*.whl