Skip to content

Commit 3c21d36

Browse files
committed
chore: release version packages
1 parent 540c75b commit 3c21d36

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ jobs:
10731073
10741074
# Download each signature file with better error handling
10751075
# Tauri v2 creates signatures for updater bundles (.tar.gz, .zip), not installers
1076-
for sig_file in "mpesa2csv.app.tar.gz.sig" "mpesa2csv.AppImage.tar.gz.sig" "mpesa2csv_${VERSION}_x64-setup.nsis.zip.sig"; do
1076+
for sig_file in "mpesa2csv.app.tar.gz.sig" "mpesa2csv_${VERSION}_amd64.AppImage.sig" "mpesa2csv_${VERSION}_x64-setup.exe.sig"; do
10771077
echo "Attempting to download: $sig_file"
10781078
if gh release download "$TAG" -p "$sig_file" -D signatures 2>/dev/null; then
10791079
echo "✅ Downloaded: $sig_file"
@@ -1097,8 +1097,8 @@ jobs:
10971097
# Read signature files
10981098
# Tauri v2 uses updater bundle signatures, not installer signatures
10991099
DARWIN_SIG=$(cat signatures/mpesa2csv.app.tar.gz.sig 2>/dev/null || echo "")
1100-
LINUX_X86_64_SIG=$(cat signatures/mpesa2csv.AppImage.tar.gz.sig 2>/dev/null || echo "")
1101-
WINDOWS_X86_64_SIG=$(cat signatures/mpesa2csv_${VERSION}_x64-setup.nsis.zip.sig 2>/dev/null || echo "")
1100+
LINUX_X86_64_SIG=$(cat signatures/mpesa2csv_${VERSION}_amd64.AppImage.sig 2>/dev/null || echo "")
1101+
WINDOWS_X86_64_SIG=$(cat signatures/mpesa2csv_${VERSION}_x64-setup.exe.sig 2>/dev/null || echo "")
11021102
11031103
# Use jq to properly create JSON with escaped strings
11041104
# URLs point to updater bundles (.tar.gz, .zip), not installers
@@ -1110,9 +1110,9 @@ jobs:
11101110
--arg darwin_aarch64_sig "$DARWIN_SIG" \
11111111
--arg darwin_x86_64_url "https://github.com/${{ github.repository }}/releases/download/$TAG/mpesa2csv.app.tar.gz" \
11121112
--arg darwin_x86_64_sig "$DARWIN_SIG" \
1113-
--arg linux_x86_64_url "https://github.com/${{ github.repository }}/releases/download/$TAG/mpesa2csv.AppImage.tar.gz" \
1113+
--arg linux_x86_64_url "https://github.com/${{ github.repository }}/releases/download/$TAG/mpesa2csv_${VERSION}_amd64.AppImage" \
11141114
--arg linux_x86_64_sig "$LINUX_X86_64_SIG" \
1115-
--arg windows_x86_64_url "https://github.com/${{ github.repository }}/releases/download/$TAG/mpesa2csv_${VERSION}_x64-setup.nsis.zip" \
1115+
--arg windows_x86_64_url "https://github.com/${{ github.repository }}/releases/download/$TAG/mpesa2csv_${VERSION}_x64-setup.exe" \
11161116
--arg windows_x86_64_sig "$WINDOWS_X86_64_SIG" \
11171117
'{
11181118
version: $version,

0 commit comments

Comments
 (0)