Skip to content

Commit

Permalink
removed cache step
Browse files Browse the repository at this point in the history
  • Loading branch information
mercillo committed Jul 2, 2024
1 parent d6254a5 commit 196ec69
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 25,966 deletions.
21 changes: 6 additions & 15 deletions .github/actions/buildextension/action.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,10 @@
name: "Submit to Web Store"
name: Submit to Web Store
on:
workflow_dispatch:

workflow_dispatch: null
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache pnpm modules
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/action-setup@v2.2.4
with:
version: latest
Expand All @@ -22,13 +13,13 @@ jobs:
uses: actions/setup-node@v3.4.1
with:
node-version: 16.x
cache: "pnpm"
cache: pnpm
- name: Build the extension
run: pnpm build
run: 'pnpm build:chrome'
- name: Package the extension into a zip artifact
run: pnpm package
- name: Browser Platform Publish
uses: PlasmoHQ/bpp@v3
with:
keys: ${{ secrets.SUBMIT_KEYS }}
artifact: build/chrome-mv3-prod.zip
keys: '${{ secrets.SUBMIT_KEYS }}'
artifact: build/chrome-mv3-prod.zip
Loading

0 comments on commit 196ec69

Please sign in to comment.