From 65e341b5669500a4b9482d3ed52f215f428fbcf1 Mon Sep 17 00:00:00 2001 From: likegears <30487484+likegears@users.noreply.github.com> Date: Fri, 12 Dec 2025 10:04:37 +0800 Subject: [PATCH] fix: Update workflow to use REGISTRY_USERNAME and REGISTRY_PASSWORD secrets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .gitea/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index d4e0122..bd12cbf 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -21,8 +21,8 @@ jobs: uses: docker/login-action@v3 with: registry: gitea.likegears.com - username: ${{ gitea.actor }} - password: ${{ secrets.REGISTRY_TOKEN }} + username: ${{ secrets.REGISTRY_USERNAME }} + password: ${{ secrets.REGISTRY_PASSWORD }} - name: Extract version from tag id: version