From 62f225dc7243a945fec7714aac7c63ddc882bbb3 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Thu, 3 Aug 2023 20:02:46 +0530 Subject: [PATCH] fix: commands chaining --- .github/workflows/appimage.yaml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/appimage.yaml b/.github/workflows/appimage.yaml index abbca05..24ba2df 100644 --- a/.github/workflows/appimage.yaml +++ b/.github/workflows/appimage.yaml @@ -34,11 +34,9 @@ jobs: distro: buster dockerRunArgs: | --volume "${PWD}:/build" - run: apt update && \ - apt-get install imagemagick file desktop-file-utils curl wget dpkg-dev unzip fuse libfuse2 && \ - cd /build && \ - ./pkg2appimage/pkg2appimage lune.yml && \ + run: | + apt update + apt install imagemagick file desktop-file-utils curl wget dpkg-dev unzip fuse libfuse2 + cd /build + ./pkg2appimage/pkg2appimage lune.yml mv ./lune/lune-$(uname -m).AppImage ./lune-$LUNE_VERSION-$(uname -m).AppImage - - -