From b6566e45909e5124efabd3da537164e638670ebe Mon Sep 17 00:00:00 2001 From: Giancarmine Salucci Date: Wed, 6 May 2026 16:53:29 +0200 Subject: [PATCH] ci: use github.actor + github.token for registry login github.actor and github.token are the correct Gitea Actions context variables (gitea.* context doesn't exist in act_runner). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .gitea/workflows/docker-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/docker-build.yml b/.gitea/workflows/docker-build.yml index 5efa16e..590e046 100644 --- a/.gitea/workflows/docker-build.yml +++ b/.gitea/workflows/docker-build.yml @@ -30,8 +30,8 @@ jobs: uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} - username: ${{ gitea.actor }} - password: ${{ secrets.GITEA_TOKEN }} + username: ${{ github.actor }} + password: ${{ github.token }} - name: Extract metadata (tags, labels) id: meta