From d86c404972743401612bcf93bbf40297125875c7 Mon Sep 17 00:00:00 2001 From: bugattiguy527 Date: Wed, 29 Oct 2025 23:51:04 -0500 Subject: [PATCH] fix: linux not uploading x64 --- .github/workflows/electron.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/electron.yml b/.github/workflows/electron.yml index e0979171..9b717947 100644 --- a/.github/workflows/electron.yml +++ b/.github/workflows/electron.yml @@ -180,8 +180,8 @@ jobs: cd release # Rename x64 tar.gz if it exists - if [ -f "termix-${VERSION}-x64.tar.gz" ]; then - mv "termix-${VERSION}-x64.tar.gz" "termix_linux_x64_${VERSION}_portable.tar.gz" + if [ -f "termix-${VERSION}.tar.gz" ]; then + mv "termix-${VERSION}.tar.gz" "termix_linux_x64_${VERSION}_portable.tar.gz" echo "Renamed x64 tar.gz" fi