Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 1 addition & 41 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
inputs:
extension:
description: Publish extension to testers
description: Publish Firefox + VS Code extensions (snapshot)
type: boolean
default: true
push:
Expand Down Expand Up @@ -47,46 +47,6 @@ jobs:
env:
NPM_CONFIG_PROVENANCE: true

- name: Zip Chrome extension
if: inputs.extension
working-directory: packages/devtools-extension
run: cd dist && zip -r ../extension-chrome.zip .

- name: Publish Chrome extension to testers
if: inputs.extension
env:
EXTENSION_ID: ${{ secrets.CHROME_EXTENSION_ID }}
CLIENT_ID: ${{ secrets.CHROME_CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.CHROME_CLIENT_SECRET }}
REFRESH_TOKEN: ${{ secrets.CHROME_REFRESH_TOKEN }}
run: |
# Get access token
TOKEN=$(curl -s -X POST https://oauth2.googleapis.com/token \
-d "client_id=$CLIENT_ID" \
-d "client_secret=$CLIENT_SECRET" \
-d "refresh_token=$REFRESH_TOKEN" \
-d "grant_type=refresh_token" | jq -r '.access_token')

# Upload
UPLOAD=$(curl -s \
-H "Authorization: Bearer $TOKEN" \
-H "x-goog-api-version: 2" \
-X PUT \
-T packages/devtools-extension/extension-chrome.zip \
"https://www.googleapis.com/upload/chromewebstore/v1.1/items/$EXTENSION_ID")
echo "Upload response: $UPLOAD"
echo "$UPLOAD" | jq -e '.uploadState == "SUCCESS"' || exit 1

# Publish to trusted testers
PUBLISH=$(curl -s \
-H "Authorization: Bearer $TOKEN" \
-H "x-goog-api-version: 2" \
-H "Content-Length: 0" \
-X POST \
"https://www.googleapis.com/chromewebstore/v1.1/items/$EXTENSION_ID/publish?publishTarget=trustedTesters")
echo "Publish response: $PUBLISH"
echo "$PUBLISH" | jq -e '.status[0] == "OK"' || { echo "::error::Publish failed — see response above"; exit 1; }

- name: Build Firefox extension
if: inputs.extension
working-directory: packages/devtools-extension
Expand Down
Loading