From b919ba388410d82b147faea453c6d3a04ee22945 Mon Sep 17 00:00:00 2001 From: Timothy Kim Date: Tue, 10 Mar 2026 23:45:49 -0400 Subject: [PATCH] change token --- .gitea/workflows/build.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index fec65a5..b194f72 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -13,17 +13,8 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Debug network - run: | - echo "=== DNS resolve ===" - nslookup git.timothykim.net || echo "nslookup failed" - echo "=== Curl registry ===" - curl -vk https://git.timothykim.net/v2/ 2>&1 | head -30 - echo "=== Ping ===" - ping -c 2 git.timothykim.net || echo "ping failed" - - name: Login to Gitea Registry - run: echo "${{ secrets.GITEA_TOKEN }}" | docker login git.timothykim.net -u ${{ gitea.actor }} --password-stdin + run: echo "${{ gitea.token }}" | docker login git.timothykim.net -u ${{ gitea.actor }} --password-stdin - name: Build and Push uses: docker/build-push-action@v5