3 Commits

Author SHA1 Message Date
Fran Jurmanović
56c51e5d02 fix env not passing
All checks were successful
Release and Deploy / build (push) Successful in 1m57s
Release and Deploy / deploy (push) Successful in 22s
2025-07-31 18:24:12 +02:00
Fran Jurmanović
1c57da9aba update release.yml health
Some checks failed
Release and Deploy / build (push) Successful in 1m58s
Release and Deploy / deploy (push) Failing after 1m19s
2025-07-31 18:17:41 +02:00
Fran Jurmanović
b2d88f1aa3 update version 2025-07-31 18:14:43 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ env:
MIGRATE_BINARY: "acc-server-migration"
DEPLOY_PATH: 'C:\acc-server-manager'
SERVICE_NAME: "ACC Server Manager"
PORT: "4000"
HEALTH_URL: "http://localhost:4000/v1/system/health"
jobs:
build:
@@ -136,7 +136,7 @@ jobs:
while ($attempt -le $maxAttempts -and -not $success) {
try {
$response = Invoke-WebRequest -Uri "http://localhost:{{ env.PORT }}/system/health" -TimeoutSec 5
$response = Invoke-WebRequest -Uri "${{ env.HEALTH_URL }}" -TimeoutSec 5
if ($response.StatusCode -eq 200) {
Write-Host "Health check passed!"
$success = $true

View File

@@ -8,7 +8,7 @@ import (
)
var (
Version = "0.10.1"
Version = "0.10.2"
Prefix = "v1"
Secret string
SecretCode string