@@ -124,7 +124,7 @@ jobs:
124
124
printf "%s\n" "${ANSI_LIGHT_YELLOW}[NOT FOUND]${ANSI_NOCOLOR}"
125
125
else
126
126
printf "%s\n" "${ANSI_LIGHT_RED}[FAILED]${ANSI_NOCOLOR}"
127
- printf "%s\n" "${ANSI_LIGHT_RED}Couldn't delete release '${{ inputs.nightly_name }}' -> Error: '${message}'.${ANSI_NOCOLOR}"
127
+ printf " %s\n" "${ANSI_LIGHT_RED}Couldn't delete release '${{ inputs.nightly_name }}' -> Error: '${message}'.${ANSI_NOCOLOR}"
128
128
printf "%s\n" "::error title=InternalError::Couldn't delete release '${{ inputs.nightly_name }}' -> Error: '${message}'."
129
129
exit 1
130
130
fi
@@ -184,7 +184,7 @@ jobs:
184
184
printf "%s\n" "${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
185
185
else
186
186
printf "%s\n" "${ANSI_LIGHT_RED}[FAILED]${ANSI_NOCOLOR}"
187
- printf "%s\n" "${ANSI_LIGHT_RED}Couldn't create release '${{ inputs.nightly_name }}' -> Error: '${message}'.${ANSI_NOCOLOR}"
187
+ printf " %s\n" "${ANSI_LIGHT_RED}Couldn't create release '${{ inputs.nightly_name }}' -> Error: '${message}'.${ANSI_NOCOLOR}"
188
188
printf "%s\n" "::error title=InternalError::Couldn't create release '${{ inputs.nightly_name }}' -> Error: '${message}'."
189
189
exit 1
190
190
fi
@@ -197,7 +197,7 @@ jobs:
197
197
ANSI_LIGHT_RED=$'\x1b[91m'
198
198
ANSI_LIGHT_GREEN=$'\x1b[92m'
199
199
ANSI_LIGHT_YELLOW=$'\x1b[93m'
200
- ANSI_LIGHT_BLUE="\e [94m"
200
+ ANSI_LIGHT_BLUE=$'\x1b [94m'
201
201
ANSI_NOCOLOR=$'\x1b[0m'
202
202
203
203
export GH_TOKEN=${{ github.token }}
@@ -285,7 +285,7 @@ jobs:
285
285
if [[ -n "${assetFilenames[$asset]}" ]]; then
286
286
printf "%s\n" "${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
287
287
printf "%s\n" "::error title=DuplicateAsset::Asset '${asset}' from artifact '${artifact}' was already uploaded to release '${{ inputs.nightly_name }}'."
288
- ERRORS=1
288
+ ERRORS=$((ERRORS + 1))
289
289
continue
290
290
else
291
291
printf "%s\n" "${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
@@ -303,9 +303,9 @@ jobs:
303
303
printf "%s\n" "${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
304
304
else
305
305
printf "%s\n" "${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
306
- printf "%s\n" "${ANSI_LIGHT_RED}Couldn't download artifact '${artifact}'.${ANSI_NOCOLOR}"
306
+ printf " %s\n" "${ANSI_LIGHT_RED}Couldn't download artifact '${artifact}'.${ANSI_NOCOLOR}"
307
307
printf "%s\n" "::error title=ArtifactNotFound::Couldn't download artifact '${artifact}'."
308
- ERRORS=1
308
+ ERRORS=$((ERRORS + 1))
309
309
continue
310
310
fi
311
311
downloadedArtifacts[$artifact]=1
@@ -355,9 +355,9 @@ jobs:
355
355
uploadFile="${asset}"
356
356
else
357
357
printf " %s\n" "Compression ${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
358
- printf "%s\n" "${ANSI_LIGHT_RED}Couldn't compress '${artifact}' to zip file '${asset}'.${ANSI_NOCOLOR}"
358
+ printf " %s\n" "${ANSI_LIGHT_RED}Couldn't compress '${artifact}' to zip file '${asset}'.${ANSI_NOCOLOR}"
359
359
printf "%s\n" "::error title=CompressionError::Couldn't compress '${artifact}' to zip file '${asset}'."
360
- ERRORS=1
360
+ ERRORS=$((ERRORS + 1))
361
361
continue
362
362
fi
363
363
elif [[ "${asset}" == !*.tgz || "${asset}" == !*.tar.gz || "${asset}" == \$*.tgz || "${asset}" == \$*.tar.gz ]]; then
@@ -384,9 +384,9 @@ jobs:
384
384
uploadFile="${asset}"
385
385
else
386
386
printf " %s\n" "Compression ${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
387
- printf "%s\n" "${ANSI_LIGHT_RED}Couldn't compress '${artifact}' to tgz file '${asset}'.${ANSI_NOCOLOR}"
387
+ printf " %s\n" "${ANSI_LIGHT_RED}Couldn't compress '${artifact}' to tgz file '${asset}'.${ANSI_NOCOLOR}"
388
388
printf "%s\n" "::error title=CompressionError::Couldn't compress '${artifact}' to tgz file '${asset}'."
389
- ERRORS=1
389
+ ERRORS=$((ERRORS + 1))
390
390
continue
391
391
fi
392
392
elif [[ "${asset}" == !*.tzst || "${asset}" == !*.tar.zst || "${asset}" == \$*.tzst || "${asset}" == \$*.tar.zst ]]; then
@@ -413,19 +413,19 @@ jobs:
413
413
uploadFile="${asset}"
414
414
else
415
415
printf " %s\n" "Compression ${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
416
- printf "%s\n" "${ANSI_LIGHT_RED}Couldn't compress '${artifact}' to zst file '${asset}'.${ANSI_NOCOLOR}"
416
+ printf " %s\n" "${ANSI_LIGHT_RED}Couldn't compress '${artifact}' to zst file '${asset}'.${ANSI_NOCOLOR}"
417
417
printf "%s\n" "::error title=CompressionError::Couldn't compress '${artifact}' to zst file '${asset}'."
418
- ERRORS=1
418
+ ERRORS=$((ERRORS + 1))
419
419
continue
420
420
fi
421
421
elif [[ -e "${artifact}/${asset}" ]]; then
422
422
printf "%s\n" "${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
423
423
uploadFile="${artifact}/${asset}"
424
424
else
425
425
printf "%s\n" "${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
426
- printf "%s\n" "${ANSI_LIGHT_RED}Couldn't find asset '${asset}' in artifact '${artifact}'.${ANSI_NOCOLOR}"
426
+ printf " %s\n" "${ANSI_LIGHT_RED}Couldn't find asset '${asset}' in artifact '${artifact}'.${ANSI_NOCOLOR}"
427
427
printf "%s\n" "::error title=FileNotFound::Couldn't find asset '${asset}' in artifact '${artifact}'."
428
- ERRORS=1
428
+ ERRORS=$((ERRORS + 1))
429
429
continue
430
430
fi
431
431
@@ -463,9 +463,9 @@ jobs:
463
463
printf "%s\n" "${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
464
464
else
465
465
printf "%s\n" "${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
466
- printf "%s\n" "${ANSI_LIGHT_RED}Couldn't upload asset '${asset}' from '${uploadFile}' to release '${{ inputs.nightly_name }}'.${ANSI_NOCOLOR}"
466
+ printf " %s\n" "${ANSI_LIGHT_RED}Couldn't upload asset '${asset}' from '${uploadFile}' to release '${{ inputs.nightly_name }}'.${ANSI_NOCOLOR}"
467
467
printf "%s\n" "::error title=UploadError::Couldn't upload asset '${asset}' from '${uploadFile}' to release '${{ inputs.nightly_name }}'."
468
- ERRORS=1
468
+ ERRORS=$((ERRORS + 1))
469
469
continue
470
470
fi
471
471
done <<<'${{ inputs.assets }}'
@@ -486,9 +486,9 @@ jobs:
486
486
printf "%s\n" "${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
487
487
else
488
488
printf "%s\n" "${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
489
- printf "%s\n" "${ANSI_LIGHT_RED}Couldn't upload asset '${{ inputs.inventory-json }}' to release '${{ inputs.nightly_name }}'.${ANSI_NOCOLOR}"
489
+ printf " %s\n" "${ANSI_LIGHT_RED}Couldn't upload asset '${{ inputs.inventory-json }}' to release '${{ inputs.nightly_name }}'.${ANSI_NOCOLOR}"
490
490
printf "%s\n" "::error title=UploadError::Couldn't upload asset '${{ inputs.inventory-json }}' to release '${{ inputs.nightly_name }}'."
491
- ERRORS=1
491
+ ERRORS=$((ERRORS + 1))
492
492
continue
493
493
fi
494
494
fi
@@ -497,8 +497,8 @@ jobs:
497
497
tree -pash -L 3 .
498
498
printf "::endgroup::\n"
499
499
500
- if [[ $ERROR -ne 0 ]]; then
501
- printf "%s\n" "${ANSI_LIGHT_RED}Errors detected in previous steps.${ANSI_NOCOLOR}"
500
+ if [[ $ERRORS -ne 0 ]]; then
501
+ printf "%s\n" "${ANSI_LIGHT_RED}${ERRORS} errors detected in previous steps.${ANSI_NOCOLOR}"
502
502
exit 1
503
503
fi
504
504
@@ -520,6 +520,6 @@ jobs:
520
520
printf "%s\n" "${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
521
521
else
522
522
printf "%s\n" "${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
523
- printf "%s\n" "${ANSI_LIGHT_RED}Couldn't remove draft-state from release '${{ inputs.nightly_name }}'.${ANSI_NOCOLOR}"
523
+ printf " %s\n" "${ANSI_LIGHT_RED}Couldn't remove draft-state from release '${{ inputs.nightly_name }}'.${ANSI_NOCOLOR}"
524
524
printf "%s\n" "::error title=ReleasePage::Couldn't remove draft-state from release '${{ inputs.nightly_name }}'."
525
525
fi
0 commit comments