We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81cf942 commit ac41ef2Copy full SHA for ac41ef2
1 file changed
.github/workflows/deploy.yml
@@ -18,7 +18,8 @@ jobs:
18
- name: Trigger Coolify webhook
19
run: |
20
HTTP_STATUS=$(curl -s -o /dev/null -w "%{http_code}" \
21
- -X GET "${{ secrets.COOLIFY_WEBHOOK_URL }}")
+ -X GET "${{ secrets.COOLIFY_WEBHOOK_URL }}" \
22
+ -H "Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}")
23
24
if [ "$HTTP_STATUS" -ge 200 ] && [ "$HTTP_STATUS" -lt 300 ]; then
25
echo "Deploy triggered successfully (HTTP $HTTP_STATUS)"
0 commit comments