Skip to content

Commit 65450cd

Browse files
committed
chore: wip
1 parent a784260 commit 65450cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ jobs:
139139
run: bun install
140140

141141
- name: Deploy
142-
run: bun buddy deploy
142+
run: bun buddy deploy production
143143

144144
deploy-stage:
145145
if: (github.ref == 'refs/heads/main' && github.event_name == 'push') || (startsWith(github.ref, 'refs/tags/') && contains(github.ref, '-beta.'))

storage/framework/core/cloud/src/cloud/compute.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class ComputeStack {
5353
}),
5454
}),
5555
healthCheck: {
56-
command: ['CMD-SHELL', 'curl -f http://localhost:3000/api/health || exit 1'], // requires curl inside the container which isn't available in the base image. I wonder if there is a better way
56+
command: ['CMD-SHELL', 'curl -f http://localhost:3000/api/healthy || exit 1'], // requires curl inside the container which isn't available in the base image. I wonder if there is a better way
5757
interval: Duration.seconds(10),
5858
timeout: Duration.seconds(5),
5959
retries: 3,

0 commit comments

Comments
 (0)