Submit to Web Store #50
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@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4.0.1 | |
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_TRANSAK_API_KEY=${{ secrets.TRANSAK_API_KEY }}" >> .env | |
- name: Modify package.json and icons for BETA | |
if: github.ref == 'refs/heads/staging' | |
run: | | |
jq '.displayName = "ArConnect BETA"' package.json > temp.json | |
mv temp.json package.json | |
cp -rf assets-beta/* assets/ | |
- 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: ${{ github.ref == 'refs/heads/production' && secrets.SUBMIT_KEYS_PRODUCTION || secrets.SUBMIT_KEYS_STAGING }} | |
artifact: build/chrome-mv3-prod.zip |