Skip to content

Commit 7eb00fe

Browse files
committed
Fix bun run commands, remove old bun versioning code
1 parent 674ea27 commit 7eb00fe

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/docker-image.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626

2727
- name: Install bun for deployment
2828
uses: oven-sh/setup-bun@v2
29+
with:
30+
bun-version: latest
2931

3032
# Login against a Docker registry
3133
# https://github.com/docker/login-action
@@ -72,17 +74,13 @@ jobs:
7274
# deploy nightly
7375
- name: Deploy docker image to staging
7476
if: github.event_name != 'release'
75-
with:
76-
bun-version: latest
7777
env:
7878
EXO_TOKEN: ${{ secrets.EXO_TOKEN }}
7979
run: bunx exoframe -u -c exoframe-nightly.json -e https://exoframe.codezen.net -t $EXO_TOKEN
8080

8181
# deploy to prod
8282
- name: Deploy docker image to production
8383
if: github.event_name == 'release'
84-
with:
85-
bun-version: latest
8684
env:
8785
EXO_TOKEN: ${{ secrets.EXO_TOKEN }}
8886
run: bunx exoframe -u -e https://exoframe.codezen.net -t $EXO_TOKEN

0 commit comments

Comments
 (0)