From 436a7e25d47db880882d14332195aa197d1cbd00 Mon Sep 17 00:00:00 2001 From: Millaguie Date: Fri, 28 Nov 2025 00:43:42 +0100 Subject: [PATCH] fix(ci): use REGISTRY secrets for container registry login MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GITHUB_TOKEN doesn't have container registry permissions in Gitea. Use dedicated REGISTRY_USERNAME and REGISTRY_PASSWORD secrets. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitea/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index b35f807..c1350ac 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -30,8 +30,8 @@ jobs: uses: docker/login-action@v3 with: registry: tea.millaguie.net - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + username: ${{ secrets.REGISTRY_USERNAME }} + password: ${{ secrets.REGISTRY_PASSWORD }} - name: Build and push backend image uses: docker/build-push-action@v5