Skip to content

Commit fe3a87a

Browse files
committed
test image
1 parent 1f5b9d9 commit fe3a87a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/release_self_hosted_images.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: Test Self-Hosted Docker Setup
22

33
on:
44
workflow_dispatch:
5+
inputs:
6+
git_sha:
7+
description: "Git SHA for backend image tag to test (defaults to latest)"
8+
type: string
9+
required: false
10+
default: "latest"
511

612
jobs:
713
test_docker_compose:
@@ -11,7 +17,7 @@ jobs:
1117

1218
services:
1319
backend:
14-
image: ghcr.io/get-convex/convex-backend:latest
20+
image: ghcr.io/get-convex/convex-backend:${{ inputs.git_sha }}
1521
env:
1622
ACTIONS_USER_TIMEOUT_SECS: "20"
1723
CONVEX_CLOUD_ORIGIN: "http://127.0.0.1:3210"

0 commit comments

Comments
 (0)