Skip to content

Submit to Web Store

Submit to Web Store #8

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: Set up Node.js
uses: actions/[email protected]
with:
node-version: "20.x"
cache: "yarn"
- 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: Create .env file
run: echo "PLASMO_PUBLIC_ONRAMPER_API_KEY=${{ secrets.ONRAMPER_API_KEY }}" >> .env
- name: Build and Package the extension into a zip artifact
run: yarn build:chrome --zip
- name: Browser Platform Publish
uses: PlasmoHQ/bpp@v3
with:
keys: ${{ secrets.SUBMIT_KEYS_STAGING }}
artifact: build/chrome-mv3-prod.zip