File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,15 +21,14 @@ if [ "$CONCLUSION" == "success" ]; then
2121 echo " CI pipeline completed successfully."
2222
2323 echo " Cleaning old artifact directories..."
24- rm -rf ./linux_rpm ./linux_deb ./windows_release ./macos_release
24+ rm -rf ./linux_rpm ./linux_deb ./windows_release
2525
2626 echo " Downloading artifacts..."
27- gh run download -n RustTracker-Linux-RPM --dir ./linux_rpm
28- gh run download -n RustTracker-Linux-DEB --dir ./linux_deb
29- gh run download -n RustTracker-Windows --dir ./windows_release
30- gh run download -n RustTracker-MacOS --dir ./macos_release
27+ gh run download -n RustTracker-Linux-RPM --dir ./linux_rpm || true
28+ gh run download -n RustTracker-Linux-DEB --dir ./linux_deb || true
29+ gh run download -n RustTracker-Windows --dir ./windows_release || true
3130
3231 echo " Creating GitHub Release..."
33- gh release create " $TAG " ./windows_release/* .exe ./linux_rpm/* .rpm ./linux_deb/* .deb ./macos_release/ * .dmg ./ RustTracker-SteamDeck-$TAG .AppImage --title " RustTracker $TAG " --notes " Release $TAG "
32+ gh release create " $TAG " ./windows_release/* .exe ./linux_rpm/* .rpm ./linux_deb/* .deb ./RustTracker-SteamDeck-$TAG .AppImage --title " RustTracker $TAG " --notes " Release $TAG "
3433fi
3534echo " Done!"
You can’t perform that action at this time.
0 commit comments