diff --git a/.github/workflows/gubbins-test.yml b/.github/workflows/gubbins-test.yml index ee7b1e7..61bbd94 100644 --- a/.github/workflows/gubbins-test.yml +++ b/.github/workflows/gubbins-test.yml @@ -113,16 +113,19 @@ jobs: echo "Building $pkg_dir" python -m build --outdir $PWD/dist $pkg_dir done + ls -l $PWD/dist - name: "Find wheels" id: find_wheel run: | cd ../diracx/dist + ls -l # We need to copy them there to be able to access them in the RUN --mount cp diracx*.whl gubbins*.whl ../extensions/containers/services/ for wheel_fn in *.whl; do pkg_name=$(basename "${wheel_fn}" | cut -d '-' -f 1) echo "${pkg_name}-wheel-name=$(ls "${pkg_name}"-*.whl)" >> $GITHUB_OUTPUT done + ls -l ../extensions/containers/services/ # - Build the gubbins image using the wheels - name: Set up QEMU