c99f40bb20
Release pipeline / Get version (push) Has been cancelled
Release pipeline / Get Chart Name (push) Has been cancelled
Release pipeline / tests (push) Has been cancelled
Release pipeline / builds (push) Has been cancelled
Release pipeline / builds-ghcr (push) Has been cancelled
Release pipeline / test-deployments (push) Has been cancelled
Release pipeline / deploy (push) Has been cancelled
Release pipeline / Helm chart oci (push) Has been cancelled
Release pipeline / npm (push) Has been cancelled
Release pipeline / snyk (push) Has been cancelled
14 lines
302 B
PowerShell
14 lines
302 B
PowerShell
$url = "http://localhost:8080"
|
|
while ($true) {
|
|
try {
|
|
$response = Invoke-WebRequest -Uri $url -UseBasicParsing
|
|
if ($response.StatusCode -eq 200) {
|
|
Start-Process $url
|
|
break
|
|
}
|
|
} catch {
|
|
# continue waiting
|
|
}
|
|
Start-Sleep -Seconds 10
|
|
}
|