From 231f6468e8ddd1095709ef19b3345e60f82fb7fd Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Thu, 1 May 2025 07:23:15 +0100 Subject: [PATCH] chore(actions): run required commands as root and use local dir in appimage workflow --- .github/workflows/appimage.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/appimage.yaml b/.github/workflows/appimage.yaml index 0d2cc1b..1128ddb 100644 --- a/.github/workflows/appimage.yaml +++ b/.github/workflows/appimage.yaml @@ -25,13 +25,13 @@ jobs: echo "Running build on debian linux $(uname -m)" - apt update - apt install imagemagick file desktop-file-utils curl wget dpkg-dev unzip fuse libfuse2 -y + sudo apt-get update + sudo apt-get install imagemagick file desktop-file-utils curl wget dpkg-dev unzip fuse libfuse2 -y wget https://github.com/AppImage/AppImageKit/releases/download/13/appimagetool-$(uname -m).AppImage -O /usr/bin/appimagetool chmod a+x /usr/bin/appimagetool - cd /build/lune.AppDir + cd ./package/appimage/lune.AppDir ARCH=$(uname -m) /usr/bin/appimagetool . mkdir ../out