AppImageCrafters / build-appimage

GitHub Action for producing AppImages
MIT License
30 stars 7 forks source link

Action fails because docker contains doesn't contains mksquashfs #5

Open iTrooz opened 1 year ago

iTrooz commented 1 year ago

You are probably already aware of this, but the action currently fail because the https://hub.docker.com/r/appimagecrafters/appimage-builder docker image doesn't include mksquashfs

The image should probably be updated to include it

aguilaair commented 1 year ago

Any way to fix this inside the action itself for the time bieng?

Evelios commented 1 year ago

I have been trying to figure this one out but haven't had any luck myself. I don't know how to get that program to available inside the docker image for a workaround

v1993 commented 11 months ago

You can run

apt-get update && apt-get install -y --no-install-recommends squashfs-tools

as part of your script section as a workaround for the time being.

git-developer commented 11 months ago

The issue was fixed in the image by commit cf1a153, but there's no release yet.

git-developer commented 11 months ago

Related upstream issue is https://github.com/AppImageCrafters/appimage-builder/issues/271