Skip to content

Commit a63b574

Browse files
authored
fix(ci): drop --immutable from publish workflow yarn install (#168)
The npm-package-publish action bumps the version before installing, which causes the lockfile to become stale in Yarn 4. Using plain yarn install allows the lockfile update after the version bump. Made-with: Cursor
1 parent 9d2d821 commit a63b574

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/publish-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
with:
5656
package-name: 'react-native-enriched-markdown'
5757
package-json-path: 'package.json'
58-
install-dependencies-command: 'yarn install --immutable'
58+
install-dependencies-command: 'yarn install'
5959
release-type: ${{ inputs.release-type }}
6060
version: ${{ inputs.version }}
6161
dry-run: ${{ inputs.dry-run }}
@@ -66,6 +66,6 @@ jobs:
6666
with:
6767
package-name: 'react-native-enriched-markdown'
6868
package-json-path: 'package.json'
69-
install-dependencies-command: 'yarn install --immutable'
69+
install-dependencies-command: 'yarn install'
7070
release-type: 'nightly'
7171
dry-run: false

0 commit comments

Comments
 (0)