From 0d60aadc4c1a7c3b4be5c001bd405844b73e8b14 Mon Sep 17 00:00:00 2001 From: Gato Date: Sat, 23 May 2026 22:14:22 +0200 Subject: [PATCH] correction config release --- .gitea/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 5659c39..2bc2a73 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -24,15 +24,15 @@ jobs: echo "Server URL: ${{ gitea.server_url }}" echo "Actor: ${{ gitea.actor }}" echo "Registry host: ${{ steps.registry.outputs.host }}" - echo "Token length: ${#TOKEN}" + echo "Token length: ${#RELEASE_TOKEN}" env: - TOKEN: ${{ secrets.TOKEN }} + TOKEN: ${{ secrets.RELEASE_TOKEN }} - name: Login to Gitea container registry uses: https://github.com/docker/login-action@v3 with: registry: ${{ steps.registry.outputs.host }} username: ${{ gitea.actor }} - password: ${{ secrets.TOKEN }} + password: ${{ secrets.RELEASE_TOKEN }} - name: Build and push uses: https://github.com/docker/build-push-action@v6