From 14e892539aabd7474861d4c843945bb8e2907fb5 Mon Sep 17 00:00:00 2001 From: Daniel Arroyo Date: Wed, 12 Aug 2026 16:22:33 -0400 Subject: [PATCH] ci: rename registry secrets to REGISTRY_USERNAME/REGISTRY_TOKEN Aligns with the secret names configured in the Gitea repo settings instead of the originally assumed GITEA_*/GITEA_* names. --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 91a8667..353c851 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -104,8 +104,8 @@ jobs: uses: docker/login-action@v3 with: registry: gitea.danielarroyo.cl - username: ${{ secrets.GITEA_USERNAME }} - password: ${{ secrets.GITEA_TOKEN }} + username: ${{ secrets.REGISTRY_USERNAME }} + password: ${{ secrets.REGISTRY_TOKEN }} - name: Extract short SHA id: meta