From ec8100426867028f9ff65d07e2bce21b76722ff0 Mon Sep 17 00:00:00 2001 From: "Debbie (Paperclip Agent)" Date: Thu, 19 Mar 2026 00:59:10 +0000 Subject: [PATCH] Remove Docker Hub auth (secrets not accessible from CI runners) DOCKERHUB_USERNAME/DOCKERHUB_TOKEN secrets are not accessible from the self-hosted runners. Remove credentials blocks and login steps to avoid template validation failures. Docker Hub pulls will use anonymous access. Refs: CAR-77 Co-Authored-By: Paperclip --- .github/workflows/ci.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71f190a..585655d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,12 +68,6 @@ jobs: type=sha,prefix=sha- type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }} - - name: Log in to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Build and push Docker image uses: docker/build-push-action@v6 with: