Created
April 11, 2022 00:19
-
-
Save crakaC/378714d12c2de60f507ae3247fb0349a to your computer and use it in GitHub Desktop.
GitHubにRelease作ったりするやつ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Release内のAssets一覧 | |
curl -v \ | |
-H "Authorization: token $GITHUB_TOKEN" \ | |
-H "Accept: application/vnd.github.v3+json" \ | |
https://api.github.com/repos/$OWNER/$REPO/releases/$RELEASE_ID/assets | |
# Assets追加 こいつだけBaseURLが違う | |
curl -v \ | |
-H "Authorization: token $GITHUB_TOKEN" \ | |
-H "Accept: application/vnd.github.v3+json" \ | |
-H "Content-Type: application/zip" \ | |
-F [email protected] \ | |
https://uploads.github.com/repos/$OWNER/$REPO/releases/$RELEASE_ID/assets?name=debug.apk | |
# Assets削除 | |
curl -v \ | |
-X DELETE \ | |
-H "Authorization: token $GITHUB_TOKEN" \ | |
-H "Accept: application/vnd.github.v3+json" \ | |
https://api.github.com/repos/$OWNER/$REPO/releases/assets/$1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment