We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f5b9d9 commit fe3a87aCopy full SHA for fe3a87a
.github/workflows/release_self_hosted_images.yml
@@ -2,6 +2,12 @@ name: Test Self-Hosted Docker Setup
2
3
on:
4
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"
11
12
jobs:
13
test_docker_compose:
@@ -11,7 +17,7 @@ jobs:
17
18
services:
19
backend:
14
- image: ghcr.io/get-convex/convex-backend:latest
20
+ image: ghcr.io/get-convex/convex-backend:${{ inputs.git_sha }}
15
21
env:
16
22
ACTIONS_USER_TIMEOUT_SECS: "20"
23
CONVEX_CLOUD_ORIGIN: "http://127.0.0.1:3210"
0 commit comments