From fe889ca75731af08c42ec714b7f2abf17cd1ee40 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Fri, 3 Apr 2026 12:08:57 -0500 Subject: [PATCH] fix(build): issue with how i wrote the release token --- .gitea/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 725291e..9d9d82f 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -72,7 +72,7 @@ jobs: shell: bash env: REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }} - REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }} + REGISTRY_TOKEN: ${{ secrets.RELEASE_TOKEN }} run: | echo "$REGISTRY_TOKEN" | docker login "${IMAGE_NAME%%/*}" -u "$REGISTRY_USERNAME" --password-stdin