From 08028611967d6227c9b4a9200a8d724132a8a351 Mon Sep 17 00:00:00 2001 From: Imbroglius <163344413+Imbroglius@users.noreply.github.com> Date: Thu, 4 Jul 2024 14:48:41 +0200 Subject: [PATCH] Update upload.sh --- upload.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upload.sh b/upload.sh index 4369abb0..0772fc83 100755 --- a/upload.sh +++ b/upload.sh @@ -26,7 +26,7 @@ createRelease() { res=$(curl -s -L -X POST \ "https://api.github.com/repos/$GUSER/$GREPO/releases" \ -H "Accept: application/vnd.github+json" \ - -H "Authorization: Bearer $GITHUB_TOKEN" \ + -H "Authorization: token: ${{ secrets.MY_TOKEN || github.token }}" \ -d "{\"tag_name\":\"$TAG\",\"name\":\"AOSP 14.0 $TAG\",\"body\":\"## Changelog\n- ...\n\n## Notes\n- ...\",\"draft\":true}") id=$(echo "$res" | jq -rc ".id") echo @@ -39,7 +39,7 @@ uploadAssets() { curl -o /dev/null -s -L -X POST \ "https://uploads.github.com/repos/$GUSER/$GREPO/releases/$id/assets?name=$(basename $file)" \ -H "Accept: application/vnd.github+json" \ - -H "Authorization: Bearer $GITHUB_TOKEN" \ + -H "Authorization: token: ${{ secrets.MY_TOKEN || github.token }}" \ -H "Content-Type: application/octet-stream" \ -T "$file" echo