Skip to content

Commit 674ea27

Browse files
committed
Fix bun installation in github ci
1 parent 5ca5f57 commit 674ea27

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/docker-image.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
- name: Checkout repository
2525
uses: actions/checkout@v4
2626

27+
- name: Install bun for deployment
28+
uses: oven-sh/setup-bun@v2
29+
2730
# Login against a Docker registry
2831
# https://github.com/docker/login-action
2932
- name: Log into registry ${{ env.REGISTRY }}
@@ -68,7 +71,6 @@ jobs:
6871

6972
# deploy nightly
7073
- name: Deploy docker image to staging
71-
uses: oven-sh/setup-bun@v2
7274
if: github.event_name != 'release'
7375
with:
7476
bun-version: latest
@@ -78,7 +80,6 @@ jobs:
7880

7981
# deploy to prod
8082
- name: Deploy docker image to production
81-
uses: oven-sh/setup-bun@v2
8283
if: github.event_name == 'release'
8384
with:
8485
bun-version: latest

0 commit comments

Comments
 (0)