Browse Source

fix: fixing release script (#903)

Baptiste Augrain 3 years ago
parent
commit
0469329683
1 changed files with 3 additions and 0 deletions
  1. 3 0
      release.sh

+ 3 - 0
release.sh

@@ -16,6 +16,8 @@ fi
 
 cd artifacts
 
+set +e
+
 for FILE in *
 do
   if [[ -f "${FILE}" ]] && [[ "${FILE}" != *.sha1 ]] && [[ "${FILE}" != *.sha256 ]]; then
@@ -25,6 +27,7 @@ do
     if [[ $? != 0 ]]; then
       while true
       do
+        echo "RE-Uploading '${FILE}'"
         gh release upload --clobber "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
 
         if [[ $? == 0 ]]; then