list liblzma.dll on win

This commit is contained in:
tooomm 2025-05-28 22:00:51 +02:00
parent 9190c2b31d
commit 4fdaaa2c73

View file

@ -161,6 +161,19 @@ if [[ $MAKE_INSTALL ]]; then
echo "::endgroup::" echo "::endgroup::"
fi fi
if [[ $RUNNER_OS == Windows ]]; then
echo "Searching for liblzma.dll after build..."
FOUND_DLL=$(find . -name "liblzma.dll" 2>/dev/null)
if [ -n "$FOUND_DLL" ]; then
echo "liblzma.dll found at:"
echo "$FOUND_DLL"
else
echo "ERROR: liblzma.dll not found after build!"
exit 1
fi
fi
if [[ $MAKE_PACKAGE ]]; then if [[ $MAKE_PACKAGE ]]; then
echo "::group::Create package" echo "::group::Create package"