From 36bab71abccc0852b6c962f06454f1773bb83c00 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sun, 3 May 2026 22:28:30 -0700 Subject: [PATCH] ci: preserve Windows Testbox phone-home POST --- .github/workflows/windows-blacksmith-testbox.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows-blacksmith-testbox.yml b/.github/workflows/windows-blacksmith-testbox.yml index f49ef6d9eab..a2c41ee18d6 100644 --- a/.github/workflows/windows-blacksmith-testbox.yml +++ b/.github/workflows/windows-blacksmith-testbox.yml @@ -65,7 +65,7 @@ jobs: fi runner_ssh_port="${BLACKSMITH_SSH_PORT:-22}" - response="$(curl -s -f -L -X POST "${api_url}/api/testbox/phone-home" \ + response="$(curl -s -f -L --post302 --post303 -X POST "${api_url}/api/testbox/phone-home" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer ${auth_token}" \ -d "{ @@ -155,7 +155,7 @@ jobs: } JSON - http_code="$(curl -sS -L -o "$RUNNER_TEMP/testbox-ready.response" -w '%{http_code}' \ + http_code="$(curl -sS -L --post302 --post303 -o "$RUNNER_TEMP/testbox-ready.response" -w '%{http_code}' \ -X POST "${api_url}/api/testbox/phone-home" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer ${auth_token}" \