Skip to content

Commit d4babc5

Browse files
authored
Update extension ID in cws-publish workflow
1 parent d66409c commit d4babc5

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/cws-publish.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,8 @@ jobs:
4646
-H "Authorization: Bearer ${{ steps.auth.outputs.access_token }}" \
4747
-H "x-goog-api-version: 2" \
4848
-T extension.zip \
49-
"https://www.googleapis.com/upload/chromewebstore/v1.1/items/${{ secrets.EXTENSION_ID }}")
50-
49+
"https://www.googleapis.com/upload/chromewebstore/v1.1/items/abbfcfajomjcnccbkcimgejlimekhige")
5150
echo "Upload response: $UPLOAD_RESPONSE"
52-
5351
# Parse uploadState to verify success before attempting to publish
5452
UPLOAD_STATE=$(echo "$UPLOAD_RESPONSE" | jq -r '.uploadState')
5553
if [ "$UPLOAD_STATE" != "SUCCESS" ]; then
@@ -64,10 +62,8 @@ jobs:
6462
-H "Authorization: Bearer ${{ steps.auth.outputs.access_token }}" \
6563
-H "x-goog-api-version: 2" \
6664
-H "Content-Length: 0" \
67-
"https://www.googleapis.com/chromewebstore/v1.1/items/${{ secrets.EXTENSION_ID }}/publish")
68-
65+
"https://www.googleapis.com/chromewebstore/v1.1/items/abbfcfajomjcnccbkcimgejlimekhige/publish")
6966
echo "Publish response: $PUBLISH_RESPONSE"
70-
7167
# Ensure publish status was OK
7268
PUBLISH_STATUS=$(echo "$PUBLISH_RESPONSE" | jq -r '.status[0]')
7369
if [ "$PUBLISH_STATUS" != "OK" ]; then

0 commit comments

Comments
 (0)