Fix upload_url json key

This commit is contained in:
Joseph Donofry 2023-02-28 12:53:27 -05:00
parent 701058ef21
commit 51c9245c6a
No known key found for this signature in database
GPG key ID: E8A1D78EF044B0CB

View file

@ -43,15 +43,16 @@ elif [ "$http_code" = "200" ]; then
fi fi
echo "Getting upload URL..." echo "Getting upload URL..."
upload_url="$(echo "$release_json" | jq '."upload-url"')" upload_url="$(echo "$release_json" | jq '."upload_url"')"
# get rid of the 'hypermedia' stuff at the end and use a 'real' URL # get rid of the 'hypermedia' stuff at the end and use a 'real' URL
echo "Upload URL (hypermedia): ${upload_url}" echo "Upload URL (hypermedia): ${upload_url}"
upload_url="$(echo "$upload_url" | sed 's/{?name,label\}/?name/g')" upload_url="$(echo "$upload_url" | sed 's/{?name,label\}/?name/g')"
ls -la .
echo "Uploading artifacts" echo "Uploading artifacts"
for file in ./artifacts/*; do for file in ./artifacts/*; do
name="${file##*/}" name="${file##*/}"
echo "Uploading ${name}" echo "Uploading $file"
[ -e "$file" ] && curl \ [ -e "$file" ] && curl \
-X POST \ -X POST \
-H "Accept: application/vnd.github+json" \ -H "Accept: application/vnd.github+json" \