From a27eedb40b33e520ce9453f91956673eb03aa2d5 Mon Sep 17 00:00:00 2001 From: imbroglius <163344413+imbroglius@users.noreply.github.com> Date: Mon, 8 Jul 2024 22:11:44 +0200 Subject: [PATCH] Update token usage --- upload.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upload.sh b/upload.sh index 823c4994..12ff099a 100755 --- a/upload.sh +++ b/upload.sh @@ -27,7 +27,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 $IMBROGLIOTOKEN" \ + -H "Authorization: Bearer ${{ secrets.IMBROGLIOTOKEN }}" \ -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 @@ -40,7 +40,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 $IMBROGLIOTOKEN" \ + -H "Authorization: Bearer ${{ secrets.IMBROGLIOTOKEN }}" \ -H "Content-Type: application/octet-stream" \ -T "$file" echo