Skip to content

Commit 379a94b

Browse files
Remove upload-agnostic-assets debug messages
1 parent a5f87d9 commit 379a94b

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

.github/workflows/upload-agnostic-assets.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
run: |
2727
TAG="${{ inputs.tag }}"
2828
VERSION="${TAG#v}"
29-
echo "Processing tag: $TAG (version: $VERSION)"
3029
3130
# Create temp directory
3231
mkdir -p temp_assets
@@ -35,17 +34,12 @@ jobs:
3534
# Download all assets from the release
3635
gh release download "$TAG" --repo ${{ github.repository }}
3736
38-
echo "Downloaded files:"
39-
ls -lh
40-
4137
# Windows: .msi installer
4238
if [ -f "Cubeast.Connect_${VERSION}_x64_en-US.msi" ]; then
43-
echo "Creating version-agnostic Windows MSI installer..."
39+
echo "Creating version-agnostic Windows installer..."
4440
cp "Cubeast.Connect_${VERSION}_x64_en-US.msi" "Cubeast.Connect_x64_en-US.msi"
4541
gh release upload "$TAG" "Cubeast.Connect_x64_en-US.msi" --repo ${{ github.repository }} --clobber
4642
echo "✓ Uploaded Cubeast.Connect_x64_en-US.msi"
47-
else
48-
echo "⚠ Windows MSI installer not found: Cubeast.Connect_${VERSION}_x64_en-US.msi"
4943
fi
5044
5145
# macOS: .dmg (Apple Silicon)
@@ -54,8 +48,6 @@ jobs:
5448
cp "Cubeast.Connect_${VERSION}_aarch64.dmg" "Cubeast.Connect_aarch64.dmg"
5549
gh release upload "$TAG" "Cubeast.Connect_aarch64.dmg" --repo ${{ github.repository }} --clobber
5650
echo "✓ Uploaded Cubeast.Connect_aarch64.dmg"
57-
else
58-
echo "⚠ macOS installer not found: Cubeast.Connect_${VERSION}_aarch64.dmg"
5951
fi
6052
6153
# Linux: .AppImage
@@ -64,6 +56,4 @@ jobs:
6456
cp "Cubeast.Connect_${VERSION}_amd64.AppImage" "Cubeast.Connect_amd64.AppImage"
6557
gh release upload "$TAG" "Cubeast.Connect_amd64.AppImage" --repo ${{ github.repository }} --clobber
6658
echo "✓ Uploaded Cubeast.Connect_amd64.AppImage"
67-
else
68-
echo "⚠ Linux installer not found: Cubeast.Connect_${VERSION}_amd64.AppImage"
6959
fi

0 commit comments

Comments
 (0)