Skip to content

Commit

Permalink
fix: yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholaswma committed Jan 24, 2024
1 parent 84fc1ae commit da1d9fc
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/submit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v3.4.1
with:
node-version: "20"
node-version: "20.x"
cache: "yarn"
- uses: actions/checkout@v3
- name: Cache yarn modules
uses: actions/cache@v3
with:
Expand All @@ -21,10 +21,12 @@ jobs:
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install
- name: Build and zip extension artifact
run: yarn build --zip
- name: Build the extension
run: yarn build
- name: Package the extension into a zip artifact
run: yarn package
- name: Browser Platform Publish
uses: PlasmoHQ/bpp@v2
uses: PlasmoHQ/bpp@v3
with:
keys: ${{ secrets.SUBMIT_KEYS_STAGING }}
artifact: build/chrome-mv3-prod.zip

0 comments on commit da1d9fc

Please sign in to comment.