File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed
Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 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)
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
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
You can’t perform that action at this time.
0 commit comments