Skip to content

Commit befb78c

Browse files
authored
Update curl command to use silent mode
1 parent c31a6ae commit befb78c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

actions/instrument/workflow/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ jq < "$jobs_json" -r --unbuffered '. | ["'"$TRACEPARENT"'", .id, .conclusion, .s
195195
*) return 1;;
196196
esac
197197
read -r content_type < "$file"
198-
curl --retry 8 "$endpoint" -H "Content-Type: $content_type" -H @"$headers" --data-binary @<(tail -n +2 "$file")
198+
curl -s --fail --retry 8 "$endpoint" -H "Content-Type: $content_type" -H @"$headers" --data-binary @<(tail -n +2 "$file")
199199
rm "$headers"
200200
}
201201
export -f export_deferred_signal_file

0 commit comments

Comments
 (0)