fix: single-line curl in deploy step (act runner escaping issue)

This commit is contained in:
2026-01-29 23:08:40 +00:00
parent b8e490f635
commit d01a155c95

View File

@@ -39,9 +39,5 @@ jobs:
steps: steps:
- name: Deploy to Dokploy - name: Deploy to Dokploy
run: | run: |
curl -fsSL -X POST \ 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 }}"}'
"${{ secrets.DOKPLOY_URL }}/api/compose.deploy" \ echo "Deploy triggered on Dokploy"
-H "Content-Type: application/json" \
-H "x-api-key: ${{ secrets.DOKPLOY_API_TOKEN }}" \
-d '{"composeId": "${{ secrets.DOKPLOY_COMPOSE_ID }}"}'
echo "✅ Deploy triggered on Dokploy"