Skip to content

Commit f268f3e

Browse files
committed
Fixing token
1 parent 79106c0 commit f268f3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ jobs:
292292
293293
# Create the release using GitHub API
294294
RESPONSE=$(curl -s -X POST \
295-
-H "Authorization: token $ADOBE_BOT_GITHUB_TOKEN" \
295+
-H "Authorization: token $GITHUB_TOKEN" \
296296
-H "Content-Type: application/json" \
297297
-d '{
298298
"tag_name": "'"$TAG"'",
@@ -307,7 +307,7 @@ jobs:
307307
# Upload release artifacts
308308
for ARTIFACT in ./all/target/*.zip; do
309309
curl -X POST \
310-
-H "Authorization: token $ADOBE_BOT_GITHUB_TOKEN" \
310+
-H "Authorization: token $GITHUB_TOKEN" \
311311
-H "Content-Type: application/octet-stream" \
312312
--data-binary @"$ARTIFACT" \
313313
"$UPLOAD_URL?name=$(basename "$ARTIFACT")"

0 commit comments

Comments
 (0)