From 3ed6c3f1027e873ee3f1c50c7fbe4412705f41d5 Mon Sep 17 00:00:00 2001 From: Jacob Weinstock Date: Tue, 30 Apr 2024 21:54:07 -0600 Subject: [PATCH] Update dockerhub login envs Signed-off-by: Jacob Weinstock --- .github/workflows/build-all-matrix.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-all-matrix.yaml b/.github/workflows/build-all-matrix.yaml index c9a9d257..81dce1bc 100644 --- a/.github/workflows/build-all-matrix.yaml +++ b/.github/workflows/build-all-matrix.yaml @@ -14,7 +14,7 @@ env: # Global environment, passed to all jobs & all steps # Apart from the quay/ghcr coordinates above (used for both pulling & pushing), we might also want to # log in to DockerHub (with a read-only token) so we aren't hit by rate limits when pulling the linuxkit pkgs. - # To do so, set the secret DOCKER_USERNAME and DOCKER_PASSWORD in the repo secrets, and set the below to yes. + # To do so, set the secret DOCKERHUB_USERNAME and DOCKERHUB_PASSWORD in the repo secrets, and set the below to yes. LOGIN_TO_DOCKERHUB: "yes" HOOK_VERSION: "0.9.0-alpha1-build-${{github.run_number}}" # Use a forced Hook version @@ -129,7 +129,7 @@ jobs: - name: Docker Login to DockerHub # read-only token, required to be able to pull all the linuxkit pkgs without getting rate limited. if: ${{ env.LOGIN_TO_DOCKERHUB == 'yes' }} uses: docker/login-action@v3 - with: { registry: "docker.io", username: "${{ secrets.DOCKER_USERNAME }}", password: "${{ secrets.DOCKER_PASSWORD }}" } + with: { registry: "docker.io", username: "${{ secrets.DOCKERHUB_USERNAME }}", password: "${{ secrets.DOCKERHUB_PASSWORD }}" } - name: Docker Login to quay.io if: ${{ env.REGISTRY == 'quay.io' }}