From be38ff8834ec00768ed1d64c73de0d52146ff810 Mon Sep 17 00:00:00 2001 From: omo50 <144749186+omo50@users.noreply.github.com> Date: Fri, 13 Mar 2026 20:39:49 -0600 Subject: [PATCH] chore(actions): fix --- .forgejo/workflows/rp-resourcepack-build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/rp-resourcepack-build.yml b/.forgejo/workflows/rp-resourcepack-build.yml index 22c58b6c3..16b4f42a3 100644 --- a/.forgejo/workflows/rp-resourcepack-build.yml +++ b/.forgejo/workflows/rp-resourcepack-build.yml @@ -23,15 +23,15 @@ jobs: curl -L \ $(curl -s https://api.github.com/repos/ComunidadAylas/PackSquash/releases/latest \ | grep "browser_download_url" \ - | grep "x86_64-unknown-linux-musl" \ + | grep "x86_64" \ | cut -d '"' -f 4) \ - -o /tmp/packsquash - chmod +x /tmp/packsquash + -o /tmp/packsquash.AppImage + chmod +x /tmp/packsquash.AppImage cat > /tmp/options.toml << EOF pack_directory = '$dir' output_file_path = '$pack.zip' EOF - /tmp/packsquash /tmp/options.toml + /tmp/packsquash.AppImage --appimage-extract-and-run /tmp/options.toml - name: Upload uses: https://code.forgejo.org/actions/upload-artifact@v3