From 114c50148a2568337868abceace370b27e8868e6 Mon Sep 17 00:00:00 2001 From: Timothy Kim Date: Wed, 11 Mar 2026 00:03:21 -0400 Subject: [PATCH] debug --- .gitea/workflows/build.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index ed278e9..68930e2 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -13,8 +13,18 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Debug registry auth - run: echo "${{ secrets.REGISTRY_TOKEN }}" + - name: Debug - try direct connection bypassing proxy + run: | + echo "=== Via NPM (port 443) ===" + curl -sk -u "timothykim:${TOKEN}" https://git.timothykim.net/v2/ 2>&1 + echo "" + echo "=== Direct to Gitea (port 3000) ===" + curl -sk -u "timothykim:${TOKEN}" http://git.timothykim.net:3000/v2/ 2>&1 + echo "" + echo "=== Direct via host gateway ===" + curl -sk -u "timothykim:${TOKEN}" http://172.17.0.1:3000/v2/ 2>&1 + env: + TOKEN: ${{ secrets.REGISTRY_TOKEN }} - name: Login to Gitea Registry run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login git.timothykim.net -u ${{ gitea.actor }} --password-stdin