feat: add CI for publishing chrome extension (#1568) #180
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- master | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Setup Node.js lts/* | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Create Release Pull Request or Publish to npm | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
publish: yarn run release | |
env: | |
NODE_OPTIONS: '--max-old-space-size=4096' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Build Chrome Extension | |
if: steps.changesets.outputs.published == 'true' | |
run: NODE_OPTIONS='--max-old-space-size=4096' DISABLE_WORKER_INLINING=true yarn turbo run prepublish --filter=@rrweb/web-extension | |
- name: Publish Chrome Extension | |
uses: mnao305/[email protected] | |
if: steps.changesets.outputs.published == 'true' | |
with: | |
extension-id: 'pdaldeopoccdhlkabbkcjmecmmoninhe' | |
file-path: ./packages/web-extension/dist/chrome.zip | |
client-id: ${{ secrets.CWS_CLIENT_ID }} | |
client-secret: ${{ secrets.CWS_CLIENT_SECRET }} | |
refresh-token: ${{ secrets.CWS_REFRESH_TOKEN }} | |
publish: true |