Skip to content

Commit

Permalink
fix(ci): use pnpm for package releases (#5746)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoerge committed Feb 16, 2024
1 parent 928f04d commit 4dedf3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'yarn'
cache: 'pnpm'
registry-url: 'https://registry.npmjs.org'

- name: Install
run: yarn install --frozen-lockfile
run: pnpm install

- name: Pre-flight
run: |
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
${{ inputs.version }}
- name: Build
run: yarn build
run: pnpm build

- name: Publish
run: |
Expand Down

0 comments on commit 4dedf3b

Please sign in to comment.