added debug logs
Some checks failed
CI TEST (Vault secrets) / build (push) Has been cancelled

This commit is contained in:
Nikita Pozdniakov
2026-01-27 13:23:06 +03:00
parent 957f038654
commit 10cd8d5c94

View File

@@ -14,8 +14,32 @@ jobs:
- name: Checkout
uses: https://gitea.nikitapozd.dev/actions/checkout@v6
- name: Install tools (curl, jq)
run: apk add --no-cache curl jq
- name: Install tools (curl, jq) with debug
shell: sh
run: |
set -euxo pipefail
echo "=== Network info ==="
ip addr || true
ip route || true
cat /etc/resolv.conf || true
echo "=== DNS test ==="
nslookup dl-cdn.alpinelinux.org || true
echo "=== HTTPS test (IPv4 only) ==="
curl -4 -v --max-time 10 https://dl-cdn.alpinelinux.org || true
echo "=== APK repositories ==="
cat /etc/apk/repositories
echo "=== APK update (verbose) ==="
apk update -v --no-progress
echo "=== Installing curl jq (verbose, no cache) ==="
APK_PROGRESS=plain apk add -v --no-cache curl jq
# - name: Install tools (curl, jq)
# run: apk add --no-cache curl jq
- name: Get Keycloak access token from Gitea secrets
env: