我想通过Github API了解发布资产上传的信息。 除此之外 Github reference, 我还没有找到最近的例子。
我创建了以下Bash脚本:
#!/bin/sh
## Make a draft release json with a markdown body
release='"tag_name": "v1.0.0", "target_commitish": "master", "name": "myapp", '
body="This is an automatic release\\n====\\n\\nDetails follows"
body=\"$body\"
body='"body": '$body', '
release=$release$body
release=$release'"draft": true, "prerelease": false'
release='{'$release'}'
url="https://api.github.com/repos/$owner/$repo/releases"
succ=$(curl -H "Authorization: token $perstok" --data $release $url)
## In case of success, we upload a file
upload=$(echo $succ | grep upload_url)
if [[ $? -eq 0 ]]; then
echo Release created.
else
echo Error creating release!
return
fi
# $upload is like:
# "upload_url": "https://uploads.github.com/repos/:owner/:repo/releases/:ID/assets{?name,label}",
upload=$(echo $upload | cut -d "\"" -f4 | cut -d "{" -f1)
upload="$upload?name=$theAsset"
succ=$(curl -H "Authorization: token $perstok" \
-H "Content-Type: $(file -b --mime-type $theAsset)" \
--data-binary @$theAsset $upload)
download=$(echo $succ | egrep -o "browser_download_url.+?")
if [[ $? -eq 0 ]]; then
echo $download | cut -d: -f2,3 | cut -d\" -f2
else
echo Upload error!
fi
当然perstok
,owner
和repo
个变量导出个人访问令牌,所有者的名称和回购名称,theAsset
是资产文件名上传。
这是上传发布资产的正确方法吗?
我是否需要添加Accept
标头?我找到了一些
-H "Accept: application/vnd.github.manifold-preview"
但他们似乎已经过时了。
如果是Windows可执行文件,是否有特定的媒体(mime)类型?
答案 0 :(得分:1)
您还有另一个example which does not use Accept header in this gist:
# 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
${GITHUB_OAUTH_TOKEN:?must be set to a github access token that can add assets to $repo} \
${GITHUB_OAUTH_BASIC:=$(printf %s:x-oauth-basic $GITHUB_OAUTH_TOKEN)}
Content-Type: application/octet-stream
应该足够通用以支持任何文件,而不必担心其MIME。
答案 1 :(得分:1)
我找到了一位官员answer:
在预览期间,您需要在
Accept
标题中提供自定义媒体类型:
application/vnd.github.manifold-preview+json
现在预览期已结束,您不再需要传递此自定义媒体类型。
无论如何,虽然不是必需的,但建议使用以下Accept
标题:
application/vnd.github.v3+json
通过这种方式,请求API的特定版本而不是当前版本,并且应用程序将在将来发生更改的情况下继续工作。