Skip to content

Commit 9e35771

Browse files
committed
fix: follow redirects in deploy webhook curl
1 parent bcdb3ad commit 9e35771

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
- name: Trigger Dokploy deploy
3535
run: |
36-
status=$(curl -s -o /dev/null -w "%{http_code}" \
36+
status=$(curl -s -L -o /dev/null -w "%{http_code}" \
3737
-X POST "${{ secrets.DOKPLOY_DEPLOY_WEBHOOK }}")
3838
echo "Webhook responded: $status"
3939
[ "$status" -ge 200 ] && [ "$status" -lt 300 ]

0 commit comments

Comments
 (0)