debug
Test Runner / test (push) Successful in 1s
Build and Push Docker Image / build (push) Failing after 1m23s

This commit is contained in:
2026-03-11 00:03:21 -04:00
parent 8dea4f754c
commit 114c50148a
+12 -2
View File
@@ -13,8 +13,18 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Debug registry auth - name: Debug - try direct connection bypassing proxy
run: echo "${{ secrets.REGISTRY_TOKEN }}" 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 - name: Login to Gitea Registry
run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login git.timothykim.net -u ${{ gitea.actor }} --password-stdin run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login git.timothykim.net -u ${{ gitea.actor }} --password-stdin