From bd42710daa17f72bb3b05734252538e7ffdfc95b Mon Sep 17 00:00:00 2001 From: kaffa Date: Sat, 28 Mar 2026 07:52:12 +0000 Subject: [PATCH] fix: docker login direct instead of action --- .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 15d47e4..133ac67 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -15,11 +15,7 @@ jobs: - uses: actions/checkout@v4 - name: Login to Gitea Registry - uses: docker/login-action@v3 - with: - registry: ${{ env.REGISTRY }} - username: ${{ gitea.actor }} - password: ${{ secrets.REGISTRY_TOKEN }} + run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login ${{ env.REGISTRY }} -u ${{ gitea.actor }} --password-stdin - name: Build and push run: |