From 9b540ea14d7c53cb294b393233592c0b3408e898 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Fri, 5 Dec 2025 10:59:40 +0000 Subject: [PATCH] Fix format of the referenced secret in the buld & push action --- .gitea/workflows/build-push.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build-push.yaml b/.gitea/workflows/build-push.yaml index 88e6b4b..81b31e9 100644 --- a/.gitea/workflows/build-push.yaml +++ b/.gitea/workflows/build-push.yaml @@ -27,7 +27,7 @@ jobs: with: registry: ${{ env.GITEA_DOMAIN }} username: ${{ env.GITEA_REGISTRY_USER }} - password: ${{ secret.REGISTRY_TOKEN }} + password: ${{ secrets.REGISTRY_TOKEN }} - name: Build and Push image uses: docker/build-push-action@v6 with: