From 618496e0514a15e0e54fd4916de9ccf686cc9c1f Mon Sep 17 00:00:00 2001 From: Armen Zambrano G Date: Thu, 9 Sep 2021 09:53:53 -0400 Subject: [PATCH] Use absolute path --- .github/workflows/packages.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index f8cc2e4a..6e13d466 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -158,7 +158,10 @@ jobs: env: CIBW_ARCHS: arm64 # This changes the default in order to place the wheel in "repaired_wheels" - CIBW_REPAIR_WHEEL_COMMAND: delocate-listdeps {wheel} && delocate-wheel --require-archs {delocate_archs} -w repaired_wheels {wheel} + # 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} # This allows substitution within setup.py PACKAGE_NAME: psycopg2-binary