Merge pull request #333 from braden-w/feature/whi-124-chore-run-forma… #45
Workflow file for this run
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: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup sparse checkout to exclude "images" folder | |
run: | | |
git sparse-checkout init --cone | |
git sparse-checkout set --no-cone '/*' '!/images/*' | |
git checkout | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Install dependencies and build artifact | |
run: | | |
cd apps/extension | |
pnpm install | |
pnpm build -- --zip | |
pnpm build -- --zip --target=firefox-mv3 | |
- name: Browser Platform Publish | |
uses: PlasmoHQ/bpp@v3 | |
with: | |
keys: ${{ secrets.BPP_KEYS }} | |
chrome-file: 'apps/extension/build/chrome-mv3-prod.zip' | |
firefox-file: 'apps/extension/build/firefox-mv3-prod.zip' |