We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69d0901 commit c4930e5Copy full SHA for c4930e5
3 files changed
release_script.sh
@@ -1,4 +1,5 @@
1
#!/bin/bash
2
+set -e
3
echo "-----------------------------------------------------"
4
echo "DO NOT RUN UNLESS YOU KNOW THE CODE COMPILES CLEANLY"
5
echo "THIS CAN TAKE 15 MINUTES TO COMPLETE"
@@ -19,6 +20,9 @@ done
19
20
if [ "$CONCLUSION" == "success" ]; then
21
echo "CI pipeline completed successfully."
22
23
+ echo "Cleaning old artifact directories..."
24
+ rm -rf ./linux_rpm ./linux_deb ./windows_release ./macos_release
25
+
26
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
0 commit comments