From d2fea646de1bd6da5ab11df40570c42992a0c189 Mon Sep 17 00:00:00 2001 From: Ryan Kegel Date: Thu, 19 Feb 2026 16:21:34 -0500 Subject: [PATCH] fix: update Docker registry credentials to use Gitea secrets --- .gitea/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 64b5c5a..ce02699 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -66,8 +66,8 @@ jobs: uses: docker/login-action@v2 with: registry: git.ryankegel.com:3000 - username: ryan #${{ secrets.REGISTRY_USERNAME }} # Stored as a Gitea secret - password: 0x013h #${{ secrets.REGISTRY_TOKEN }} # Stored as a Gitea secret (use a PAT here) + username: ${{ secrets.REGISTRY_USER }} + password: ${{ secrets.REGISTRY_PASSWORD }} - name: Push Backend Image to Gitea Registry run: |