Skip to content

Commit b0fea7c

Browse files
committed
ci: use platform release asset names
1 parent c027c65 commit b0fea7c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,14 +187,14 @@ jobs:
187187
--window-size 800 400 \
188188
--icon-size 100 \
189189
--app-drop-link 600 185 \
190-
"release/DevToolbox.dmg" \
190+
"release/DevToolbox-${{ matrix.build }}.dmg" \
191191
"bin/$BINARY_NAME.app"
192192
elif [ "${{ matrix.os }}" = "windows-latest" ]; then
193193
# Windows: copy .exe
194-
cp "bin/$BINARY_NAME" "release/DevToolbox.exe"
194+
cp "bin/$BINARY_NAME" "release/DevToolbox-${{ matrix.build }}.exe"
195195
else
196196
# Linux or macOS binary (no .app): create tar.gz
197-
tar -czf "release/DevToolbox.tar.gz" -C bin "$BINARY_NAME"
197+
tar -czf "release/DevToolbox-${{ matrix.build }}.tar.gz" -C bin "$BINARY_NAME"
198198
fi
199199
200200
echo "=== Release contents ==="

0 commit comments

Comments
 (0)