From b4ff52108aa4bf81c8bf8e31587696e38659cc90 Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Mon, 13 Apr 2026 14:56:37 -0500 Subject: [PATCH] fix: remove AppImage from upload artifact patterns --- .gitea/workflows/auto-tag.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/auto-tag.yml b/.gitea/workflows/auto-tag.yml index d6f09447..35767621 100644 --- a/.gitea/workflows/auto-tag.yml +++ b/.gitea/workflows/auto-tag.yml @@ -322,7 +322,7 @@ jobs: fi echo "Release ID: $RELEASE_ID" ARTIFACTS=$(find src-tauri/target/x86_64-unknown-linux-gnu/release/bundle -type f \ - \( -name "*.deb" -o -name "*.rpm" -o -name "*.AppImage" \)) + \( -name "*.deb" -o -name "*.rpm" \)) if [ -z "$ARTIFACTS" ]; then echo "ERROR: No Linux amd64 artifacts were found to upload." exit 1