From 539ef21d89e6196a310c2061a19d92d0b1f7c92c Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 20 May 2026 03:41:52 +0000 Subject: [PATCH] fix(ci): use REGISTRY_TOKEN for Docker push auth Use the org-level REGISTRY_TOKEN secret instead of gitea.token for authenticating to the Gitea Container Registry. The gitea.token does not have packages:write scope. Co-Authored-By: Paperclip --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 1b1c09b..33d7b0c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -84,7 +84,7 @@ jobs: with: registry: git.farh.net username: ${{ gitea.actor }} - password: ${{ gitea.token }} + password: ${{ secrets.REGISTRY_TOKEN }} - name: Build and push API image uses: docker/build-push-action@v6