Skip to content

Commit

Permalink
chore: replaced pnpm with yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholaswma committed Jan 24, 2024
1 parent ea0c9ec commit 53870fb
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/submit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache pnpm modules
- name: Cache yarn modules
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
path: "**/node_modules"
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/[email protected]
with:
version: latest
run_install: true
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install
- name: Build and zip extension artifact
run: pnpm build -- --zip
run: yarn build --zip
- name: Browser Platform Publish
uses: PlasmoHQ/bpp@v2
with:
Expand Down

0 comments on commit 53870fb

Please sign in to comment.