From 86c113c412b78876739a00074e497bd0635c8638 Mon Sep 17 00:00:00 2001 From: Kyle Pope Date: Wed, 18 Mar 2026 09:19:28 +0800 Subject: [PATCH] Fix checkout token: use REGISTRY_TOKEN (GITEA_ prefix reserved) Gitea reserves the GITEA_ prefix for secrets. Reuse the existing REGISTRY_TOKEN PAT which already has repo read access. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 680fbe5..896cefc 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -13,7 +13,7 @@ jobs: - name: Checkout uses: https://github.com/actions/checkout@v4 with: - token: ${{ secrets.GITEA_TOKEN }} + token: ${{ secrets.REGISTRY_TOKEN }} - name: Login to Gitea Container Registry uses: https://github.com/docker/login-action@v3