fix env not passing
All checks were successful
Release and Deploy / build (push) Successful in 1m57s
Release and Deploy / deploy (push) Successful in 22s

This commit is contained in:
Fran Jurmanović
2025-07-31 18:24:12 +02:00
parent 1c57da9aba
commit 56c51e5d02

View File

@@ -136,7 +136,7 @@ jobs:
while ($attempt -le $maxAttempts -and -not $success) { while ($attempt -le $maxAttempts -and -not $success) {
try { try {
$response = Invoke-WebRequest -Uri "{{ env.HEALTH_URL }}" -TimeoutSec 5 $response = Invoke-WebRequest -Uri "${{ env.HEALTH_URL }}" -TimeoutSec 5
if ($response.StatusCode -eq 200) { if ($response.StatusCode -eq 200) {
Write-Host "Health check passed!" Write-Host "Health check passed!"
$success = $true $success = $true