This commit is contained in:
leehk 2025-04-16 17:12:14 +08:00
parent 98a3d3ebd1
commit 13d5ab4098
2 changed files with 2 additions and 1 deletions

View File

@ -70,6 +70,7 @@ jobs:
with: with:
projectName: aimingmed-ai projectName: aimingmed-ai
image_repo: ghcr.io/$(echo $GITHUB_REPOSITORY | tr '[A-Z]' '[a-z]') image_repo: ghcr.io/$(echo $GITHUB_REPOSITORY | tr '[A-Z]' '[a-z]')
testContainerName: tests-aimingmedai
# Pass test environment variables as JSON string # Pass test environment variables as JSON string
testEnvs: > testEnvs: >
[ [

View File

@ -97,7 +97,7 @@ jobs:
foreach ($img in $images) { foreach ($img in $images) {
$serviceName = $img.name $serviceName = $img.name
$svc = @{} $svc = @{}
$svc.image = "${{ env.IMAGE_REPO }}/$($serviceName):${{ env.TAG }}" # Use run_id tag $svc.image = "$env:IMAGE_REPO/$($serviceName):${{ env.TAG }}" # Use run_id tag
if ($img.depends_on) { if ($img.depends_on) {
$svc.depends_on = $img.depends_on $svc.depends_on = $img.depends_on