From a11986ad1d54cf47a0581adee22c4d60d7b135f8 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2020 01:35:13 +0000 Subject: [PATCH] Make curl verbose when uploading assets to github (#10757) (#10761) Debugging silent asset upload failures during release (cherry picked from commit 3aab13a1679ba2b7846d9ba39b04a52f2017d3e0) Co-authored-by: Trent Nelson --- ci/upload-github-release-asset.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/upload-github-release-asset.sh b/ci/upload-github-release-asset.sh index 76210edf74..ca2ae2a8f6 100755 --- a/ci/upload-github-release-asset.sh +++ b/ci/upload-github-release-asset.sh @@ -42,6 +42,7 @@ echo "Github release id for $CI_TAG is $releaseId" for file in "$@"; do echo "--- Uploading $file to tag $CI_TAG of $CI_REPO_SLUG" curl \ + --verbose \ --data-binary @"$file" \ -H "Authorization: token $GITHUB_TOKEN" \ -H "Content-Type: application/octet-stream" \