From ae418ecd2f86f0bd82c6729aea31199fecd064de Mon Sep 17 00:00:00 2001 From: Christian Vedel Date: Wed, 8 Jan 2025 15:37:57 +0100 Subject: [PATCH] update wheel workflow to new folder structure --- .github/workflows/Build-wheels.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Build-wheels.yml b/.github/workflows/Build-wheels.yml index 47445468..91794c21 100644 --- a/.github/workflows/Build-wheels.yml +++ b/.github/workflows/Build-wheels.yml @@ -177,14 +177,14 @@ jobs: run: | if [ "${RUNNER_OS}" == "Windows" ]; then cd bin/Release - cp *.dll ../../../imagingsuite/package/pymuhrec + cp *.dll PlugIns/BackProjectors/*.dll PlugIns/Preprocessors/*.dll ../../../imagingsuite/package/pymuhrec cp *.pyd ../../../imagingsuite/package/pymuhrec elif [ "${RUNNER_OS}" == "Linux" ]; then - cd Release/lib - cp * ../../../imagingsuite/package/pymuhrec + cd Release + cp lib/* PlugIns/BackProjectors/*.so PlugIns/Preprocessors/*.so ../../imagingsuite/package/pymuhrec elif [ "${RUNNER_OS}" == "macOS" ]; then cd Release/lib - cp *.dylib ../../../imagingsuite/package/pymuhrec + cp *.dylib BackProjectors/*.dylib Preprocessors/*.dylib ../../../imagingsuite/package/pymuhrec cp *.so ../../../imagingsuite/package/pymuhrec fi