From 6d4147ce03ca9d8f840672413dfe9c1ac0c1e925 Mon Sep 17 00:00:00 2001 From: cs_savannah Date: Sun, 24 May 2026 18:10:34 +0000 Subject: [PATCH] fix(ci): replace docker/login-action with direct docker login (CAR-994) The docker/login-action@v3 does not work with Gitea's token. Replaced with direct docker login command using ${{ github.token }}. Co-Authored-By: Paperclip --- .gitea/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 1c86e8c..e008400 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -43,11 +43,7 @@ jobs: echo "version=$VERSION" >> "$GITHUB_OUTPUT" - name: Log in to Gitea Container Registry - uses: docker/login-action@v3 - with: - registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITEA_TOKEN }} + run: echo "${{ github.token }}" | docker login ${{ env.REGISTRY }} -u ${{ github.actor }} --password-stdin - name: Extract metadata id: meta -- 2.52.0