Skip to content

Commit 6ee8ecc

Browse files
committed
fix: correct bun commands in workflows
1 parent a28db04 commit 6ee8ecc

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/portr-server.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ jobs:
4343
bun-version: 1.3.11
4444

4545
- name: Install client dependencies
46-
run: bun --cwd internal/client/dashboard/ui-v2 install --frozen-lockfile
46+
run: bun install --cwd internal/client/dashboard/ui-v2 --frozen-lockfile
4747

4848
- name: Build client
49-
run: bun --cwd internal/client/dashboard/ui-v2 run build
49+
run: bun run --cwd internal/client/dashboard/ui-v2 build
5050

5151
- name: Set up Go
5252
uses: actions/setup-go@v5

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
bun-version: 1.3.11
3434

3535
- name: Install client dependencies
36-
run: bun --cwd internal/client/dashboard/ui-v2 install --frozen-lockfile
36+
run: bun install --cwd internal/client/dashboard/ui-v2 --frozen-lockfile
3737

3838
- name: Build client
39-
run: bun --cwd internal/client/dashboard/ui-v2 run build
39+
run: bun run --cwd internal/client/dashboard/ui-v2 build
4040

4141
- name: Publish packages
4242
uses: goreleaser/goreleaser-action@v6

0 commit comments

Comments
 (0)