From 72ad9568cd31136b31bf4b94def08d3e9fb0f245 Mon Sep 17 00:00:00 2001 From: josh Date: Sun, 29 Mar 2026 09:28:01 -0400 Subject: [PATCH] fix: rename reserved GITEA_ prefixed secrets to REGISTRY/REGISTRY_TOKEN --- .gitea/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 200bce0..7829143 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -60,7 +60,7 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: ${{ gitea.server_url && '' }}${{ vars.GITEA_REGISTRY }}/nhlscoreboard + images: ${{ vars.REGISTRY }}/nhlscoreboard tags: | type=semver,pattern={{version}} type=raw,value=latest,enable={{is_default_branch}} @@ -68,9 +68,9 @@ jobs: - name: Log in to Gitea registry uses: docker/login-action@v3 with: - registry: ${{ vars.GITEA_REGISTRY }} + registry: ${{ vars.REGISTRY }} username: ${{ gitea.actor }} - password: ${{ secrets.GITEA_TOKEN }} + password: ${{ secrets.REGISTRY_TOKEN }} - name: Build and push uses: docker/build-push-action@v6