fix: single-line curl in deploy step (act runner escaping issue)
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user