diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ab126faa3..38a8a4ec1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -55,6 +55,8 @@ jobs: exit 1 fi - # Unpack the boot.img + # Unpack the boot.img using the absolute path echo 'Unpacking prebuilt boot.img' - $UNPACKBOOTIMG --boot_img="./boot-5.10.img" + FULL_PATH=$(pwd)/boot-5.10.img + echo "Unpacking using: $FULL_PATH" + $UNPACKBOOTIMG --boot_img="$FULL_PATH"