We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ca5f57 commit 674ea27Copy full SHA for 674ea27
.github/workflows/docker-image.yml
@@ -24,6 +24,9 @@ jobs:
24
- name: Checkout repository
25
uses: actions/checkout@v4
26
27
+ - name: Install bun for deployment
28
+ uses: oven-sh/setup-bun@v2
29
+
30
# Login against a Docker registry
31
# https://github.com/docker/login-action
32
- name: Log into registry ${{ env.REGISTRY }}
@@ -68,7 +71,6 @@ jobs:
68
71
69
72
# deploy nightly
70
73
- name: Deploy docker image to staging
- uses: oven-sh/setup-bun@v2
74
if: github.event_name != 'release'
75
with:
76
bun-version: latest
@@ -78,7 +80,6 @@ jobs:
78
80
79
81
# deploy to prod
82
- name: Deploy docker image to production
83
if: github.event_name == 'release'
84
85
0 commit comments