Skip to content

Commit b474345

Browse files
robcohenclaude
andcommitted
fix: allow bun.lock regeneration on manual workflow dispatch
Delete bun.lock to force regeneration. The workflow now only uses --frozen-lockfile on push events, allowing manual triggers to regenerate the lockfile when Dependabot updates package-lock.json. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 3c537e1 commit b474345

2 files changed

Lines changed: 1 addition & 837 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: bun add @rustledger/wasm@latest
3030

3131
- name: Install dependencies
32-
run: bun install ${{ github.event_name == 'repository_dispatch' && '' || '--frozen-lockfile' }}
32+
run: bun install ${{ github.event_name == 'push' && '--frozen-lockfile' || '' }}
3333

3434
- name: Copy WASM from npm package to pkg/
3535
run: |

0 commit comments

Comments
 (0)