daily-tracker

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit a2f06a3c8cf73fbde5e38685c3c13397c806996b
parent 93eaebc03fb9772815fda5621d5e2948ee7ffce1
Author: Silas Brack <silasbrack@gmail.com>
Date:   Mon,  1 Jun 2026 19:56:28 +0200

debug: add SSH diagnostics to CI

Diffstat:
M.forgejo/workflows/bump-infra.yml | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/.forgejo/workflows/bump-infra.yml b/.forgejo/workflows/bump-infra.yml @@ -13,6 +13,11 @@ jobs: run: | set -euo pipefail + echo "DEBUG: HOME=$HOME" + echo "DEBUG: SSH key exists: $(ls -la $HOME/.ssh/id_ed25519 2>&1)" + echo "DEBUG: whoami=$(whoami)" + ssh -o StrictHostKeyChecking=no -o ConnectTimeout=5 forgejo@git.fnarglebeast.com 2>&1 || true + export GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" INFRA_REPO="ssh://forgejo@git.fnarglebeast.com/silas/infrastructure.git"