Skip to content

Commit

Permalink
Switch experimental releases to install without a frozen lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
brophdawg11 committed Mar 7, 2024
1 parent 6431f86 commit 9101550
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release-experimental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ jobs:
cache: "pnpm"

- name: 📥 Install deps
run: pnpm install --frozen-lockfile
# Don't use frozen lockfile for experimental releases since we will have
# just changed versions in package.json and they'll be out of date in
# pnpm-lock.yaml so installing with a frozen lockfile will fail
run: pnpm install --no-frozen-lockfile

- name: 🏗 Build
run: pnpm build
Expand Down

0 comments on commit 9101550

Please sign in to comment.