diff --git a/dist/upload-to-github.sh b/dist/upload-to-github.sh index 58cfffb2..6acc4a52 100644 --- a/dist/upload-to-github.sh +++ b/dist/upload-to-github.sh @@ -71,5 +71,7 @@ echo "Uploading asset... " # Construct url GH_ASSET="https://uploads.github.com/repos/$OWNER/$REPO/releases/$id/assets?name=$(basename $filename)" -curl "$GITHUB_OAUTH_BASIC" --data-binary @"$filename" -H "Authorization: token $github_api_token" -H "Content-Type: application/octet-stream" $GH_ASSET +# FIXME? $GITHUB_OAUTH_BASIC expands to empty value +# curl "$GITHUB_OAUTH_BASIC" --data-binary @"$filename" -H "Authorization: token $github_api_token" -H "Content-Type: application/octet-stream" $GH_ASSET +curl --data-binary @"$filename" -H "Authorization: token $github_api_token" -H "Content-Type: application/octet-stream" $GH_ASSET