From 73e6daf96bae1bbfc0e90915bd56d81903db6d6d Mon Sep 17 00:00:00 2001 From: Eugene Fox Date: Wed, 9 Oct 2024 16:00:40 +0000 Subject: [PATCH] fix: fixed Docker Hub registry authentication --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1be2140..1c2e5fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.inputs.push == 'true' uses: docker/login-action@v3 with: - username: ${{ github.repository_owner }} + username: ${{ github.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: "Login to GitHub Container Registry"