-
Notifications
You must be signed in to change notification settings - Fork 44
42 lines (39 loc) · 1.45 KB
/
submit-beta.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: "BETA 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 && \
jq --arg version "${{ secrets.VERSION }}" '.version = $version' 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