From b331a314145fe07b0a53fbe4f411e2ee895d8a58 Mon Sep 17 00:00:00 2001 From: Bohdan Triapitsyn Date: Tue, 30 Dec 2025 01:35:31 +0200 Subject: [PATCH] fix: update DMG naming convention to include version and platform information --- .github/workflows/release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d933cf97..64f9e310 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -184,8 +184,7 @@ jobs: DMG_PATH="packages/desktop/src-tauri/target/${{ matrix.target }}/release/bundle/dmg/*.dmg" if ls $DMG_PATH 1> /dev/null 2>&1; then DMG_FILE=$(ls $DMG_PATH | head -n 1) - DMG_BASE=$(basename "$DMG_FILE") - DMG_NAME="${DMG_BASE%.dmg}-${{ matrix.platform }}.dmg" + DMG_NAME="OpenChamber_${VERSION}_${{ matrix.platform }}.dmg" cp "$DMG_FILE" "artifacts/$DMG_NAME" else echo "Error: DMG file not found at $DMG_PATH"