Skip to content

Commit 947788a

Browse files
committed
ci(publish): remove bun.lock deletion from publish workflows
Remove `rm -f bun.lock` command from both publish.yml and publish-gpr.yml workflows — unnecessary cleanup step before `nx release publish`.
1 parent 5ee80ec commit 947788a

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/publish-gpr.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ jobs:
3939
run: npx nx run-many --target=build --all
4040

4141
- name: Publish packages
42-
run: |
43-
rm -f bun.lock
44-
npx nx release publish
42+
run: npx nx release publish
4543
shell: bash
4644
env:
4745
NPM_CONFIG_ACCESS: public

.github/workflows/publish.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ jobs:
3636
run: bun install
3737

3838
- name: Publish packages
39-
run: |
40-
rm -f bun.lock
41-
npx nx release publish
39+
run: npx nx release publish
4240
shell: bash
4341
env:
4442
NPM_CONFIG_PROVENANCE: true

0 commit comments

Comments
 (0)