Submit to Web Store #18
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: "Submit to Web Store" | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
sparse-checkout: . | |
- name: Cache pnpm modules | |
uses: actions/cache@v3 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}- | |
- uses: pnpm/action-setup@v2.2.4 | |
with: | |
version: latest | |
run_install: true | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v3.4.1 | |
with: | |
node-version: 20.x | |
cache: "pnpm" | |
- name: Build the extension | |
run: pnpm build | |
- name: Package the extension into a zip artifact | |
run: pnpm package | |
- name: Browser Platform Publish | |
uses: PlasmoHQ/bpp@v3 | |
with: | |
keys: ${{ secrets.SUBMIT_KEYS }} | |
chrome-file: build/chrome-mv3-prod.zip | |
firefox-file: build/firefox-mv2-prod.zip | |
verbose: true |