Skip to content

Commit cb7f017

Browse files
theoephraimclaude
andcommitted
Use local bumpy source in CI workflows
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent b4c59ea commit cb7f017

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- uses: oven-sh/setup-bun@v2
2121
- run: bun install
22-
- run: bunx @varlock/bumpy ci check
22+
# Using local source since this is bumpy's own repo — normally use the published package:
23+
# - run: bunx @varlock/bumpy ci check
24+
- run: bun packages/bumpy/src/cli.ts ci check
2325
env:
2426
GH_TOKEN: ${{ github.token }}

.github/workflows/release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
fetch-depth: 0
1717
- uses: oven-sh/setup-bun@v2
1818
- run: bun install
19-
- run: bunx @varlock/bumpy ci release
19+
# Using local source since this is bumpy's own repo — normally use the published package:
20+
# - run: bunx @varlock/bumpy ci release
21+
- run: bun packages/bumpy/src/cli.ts ci release
2022
env:
2123
GH_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)