Skip to content

Commit b376ac0

Browse files
committed
add test_backend step to release self-hosted images
1 parent 04dc327 commit b376ac0

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/release_self_hosted_images.yml

+6
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,9 @@ jobs:
3434
contents: read
3535
packages: write
3636
id-token: write
37+
38+
test_backend:
39+
needs: release_backend
40+
uses: ./.github/workflows/test_self_hosted_backend.yml
41+
with:
42+
git_sha: ${{ github.sha }}

.github/workflows/test_self_hosted_backend.yml

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: Test Self-Hosted Backend
22

33
on:
4+
workflow_call:
5+
inputs:
6+
git_sha:
7+
description: "Git SHA for backend image tag to test"
8+
type: string
9+
required: true
410
workflow_dispatch:
511
inputs:
612
git_sha:

0 commit comments

Comments
 (0)