fix(staging): ASCII-only echo so PowerShell doesn't choke on em dash
CI / backend (pull_request) Successful in 1m3s
CI / frontend (pull_request) Successful in 21s
Security / secrets (pull_request) Successful in 6s
Security / dependencies (pull_request) Successful in 1m4s

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 <noreply@anthropic.com>
This commit is contained in:
cesnimda
2026-07-01 13:09:57 +02:00
parent d9a07a01b2
commit 077c3b3588
+1 -1
View File
@@ -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"