Skip to content

Submit to Web Store

Submit to Web Store #3

Workflow file for this run

name: "Submit to Web Store"
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache yarn modules
uses: actions/cache@v3
with:
path: "**/node_modules"
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install
- name: Build and zip extension artifact
run: yarn build --zip
- name: Browser Platform Publish
uses: PlasmoHQ/bpp@v2
with:
keys: ${{ secrets.SUBMIT_KEYS_STAGING }}
artifact: build/chrome-mv3-prod.zip