Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,16 @@ jobs:
with:
node-version-file: ".nvmrc"
registry-url: "https://registry.npmjs.org/"
# Do NOT run an immutable install here: this is a long-lived,
# auto-incrementing release branch. Its committed yarn.lock may lag the
# bumped package.json versions, and this job rewrites the lock anyway.
# An immutable install would fail before the version-bump/sync steps run.
install: "false"

- name: Install dependencies
# Mutable install: installs deps for nx/build AND self-heals any lockfile
# drift left by a previous release before this run bumps the version.
run: yarn install --no-immutable

- name: Update npm CLI for trusted publishing
run: npm install -g npm@latest
Expand Down
Loading