From 7c16a8171aec40daff5df8cf0e3e3314449cda3b Mon Sep 17 00:00:00 2001 From: Jyrki Gadinger Date: Thu, 23 Jan 2025 16:02:47 +0100 Subject: [PATCH] update AppImage build comment text Signed-off-by: Jyrki Gadinger --- .github/workflows/linux-appimage.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux-appimage.yml b/.github/workflows/linux-appimage.yml index a5f1aef032e03..0269dce0f1201 100644 --- a/.github/workflows/linux-appimage.yml +++ b/.github/workflows/linux-appimage.yml @@ -23,9 +23,10 @@ jobs: id: upload-appimage uses: actions/upload-artifact@v4 with: - name: appimage-pr-${{ github.event.number }} + name: nextcloud-appimage-pr-${{ github.event.number }} path: ${{ steps.build-appimage.outputs.APPIMAGE_NAME }} overwrite: true + compression-level: 0 # squashfs is already compressed - name: Comment AppImage uses: actions/github-script@v7 @@ -36,9 +37,11 @@ jobs: const comment_body = ` ${comment_identifier_string} - AppImage file: [${{ steps.build-appimage.outputs.APPIMAGE_NAME }}](${{ steps.upload-appimage.outputs.artifact-url }}) + Artifact containing the AppImage: [nextcloud-appimage-pr-${{ github.event.number }}.zip](${{ steps.upload-appimage.outputs.artifact-url }}) - To test this change/fix you can simply download above AppImage file and test it. + SHA256 checksum: \`${{ steps.upload-appimage.outputs.artifact-digest }}\` + + To test this change/fix you can download the above artifact file, unzip it, and run it. Please make sure to quit your existing Nextcloud app and backup your data. `;