debug: fix Alpine-incompatible od command in Coolify deploy step
Some checks failed
CI / ci (push) Successful in 1m12s
CI / e2e (push) Has been skipped
CI / deploy (push) Failing after 7s

Previous run failed at od -t x1z (unsupported in Alpine busybox).
Switch to hexdump -C which is available in Alpine.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-11 00:29:43 +02:00
parent 8cdeeb2600
commit a69e78357f

View File

@@ -60,8 +60,7 @@ jobs:
run: |
echo "Token length: ${#COOLIFY_TOKEN}"
echo "Token first 3 chars: $(printf '%.3s' "${COOLIFY_TOKEN}")"
echo "Token hex (first 20 bytes):"
printf '%s' "${COOLIFY_TOKEN}" | od -A x -t x1z -N 20
printf '%s' "${COOLIFY_TOKEN}" | hexdump -C | head -4
echo "Webhook URL: ${COOLIFY_WEBHOOK}"
echo "--- Attempt 1: manual Bearer header ---"
RESPONSE=$(curl -s -w '\n%{http_code}' -X GET "${COOLIFY_WEBHOOK}" \