diff --git a/.github/workflows/build-packages.yml b/.github/workflows/build-packages.yml index ea0bce2..819f4a2 100644 --- a/.github/workflows/build-packages.yml +++ b/.github/workflows/build-packages.yml @@ -83,8 +83,10 @@ jobs: run: | target=$(pwd)/target pushd /tmp/artifacts + echo Find all files and directories find . -exec ls -hl {} \; - find . -exec file {} \; + echo List all types + find . -type f -exec file {} \; for d in *-executables do rm -Rf $ $target/$(echo $d | sed -e 's/-executables//g') @@ -92,6 +94,10 @@ jobs: done popd ls -hl target/ + echo Find all files and directories + find . -exec ls -hl {} \; + echo List all types + find . -type f -exec file {} \; file target/x86_64-unknown-linux-gnu/release/dsmr-rs file target/arm-unknown-linux-musleabihf/release/dsmr-rs