From 077c3b3588436785b93d3e8445cc787aec9a60f6 Mon Sep 17 00:00:00 2001 From: cesnimda Date: Wed, 1 Jul 2026 13:09:57 +0200 Subject: [PATCH] fix(staging): ASCII-only echo so PowerShell doesn't choke on em dash The deploy succeeded on the runner but the final 'Staging endpoints' step failed: act_runner writes the step as UTF-8 while Windows PowerShell 5.1 reads .ps1 as ANSI, so the em dash mis-decoded and PowerShell saw an unterminated string. Replace it with a plain hyphen. Keeps all host-mode run: content ASCII. Co-Authored-By: Claude Opus 4.8 --- .gitea/workflows/deploy-staging.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy-staging.yml b/.gitea/workflows/deploy-staging.yml index 5d07023..27718a3 100644 --- a/.gitea/workflows/deploy-staging.yml +++ b/.gitea/workflows/deploy-staging.yml @@ -45,4 +45,4 @@ jobs: - name: Staging endpoints shell: powershell - run: Write-Host "Staging up — Frontend http://localhost:18081 API http://localhost:18080/swagger" + run: Write-Host "Staging up - Frontend http://localhost:18081 API http://localhost:18080/swagger"