From e42b7e1a660b1d9b8660e7fa9b1fb776ab75aa1f Mon Sep 17 00:00:00 2001 From: "deploy-debbie[bot]" <268472978+deploy-debbie[bot]@users.noreply.github.com> Date: Wed, 18 Mar 2026 18:20:31 +0000 Subject: [PATCH] fix(ci): remove unnecessary Docker Hub login step The build-and-push job had an unconditional Docker Hub login step that was failing because DOCKERHUB_USERNAME and DOCKERHUB_TOKEN secrets are not provisioned. Since we push images to GHCR (not Docker Hub), this step is not needed. Closes cartsnitch/infra#5 Co-authored-by: deploy-debbie[bot] <268472978+deploy-debbie[bot]@users.noreply.github.com> 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 516957f..585655d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,12 +51,6 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Log in to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Log in to GHCR if: github.event_name == 'push' && github.ref == 'refs/heads/main' uses: docker/login-action@v3