From d01a155c95c318420b0a7f2bfa5bd79e4eb087fc Mon Sep 17 00:00:00 2001 From: Hammer Date: Thu, 29 Jan 2026 23:08:40 +0000 Subject: [PATCH] fix: single-line curl in deploy step (act runner escaping issue) --- .gitea/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7b37e70..7cda860 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -39,9 +39,5 @@ jobs: steps: - name: Deploy to Dokploy run: | - curl -fsSL -X POST \ - "${{ secrets.DOKPLOY_URL }}/api/compose.deploy" \ - -H "Content-Type: application/json" \ - -H "x-api-key: ${{ secrets.DOKPLOY_API_TOKEN }}" \ - -d '{"composeId": "${{ secrets.DOKPLOY_COMPOSE_ID }}"}' - echo "✅ Deploy triggered on Dokploy" + curl -fsSL -X POST "${{ secrets.DOKPLOY_URL }}/api/compose.deploy" -H "Content-Type: application/json" -H "x-api-key: ${{ secrets.DOKPLOY_API_TOKEN }}" -d '{"composeId": "${{ secrets.DOKPLOY_COMPOSE_ID }}"}' + echo "Deploy triggered on Dokploy"