File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ env: # Global environment, passed to all jobs & all steps
1414
1515 # Apart from the quay/ghcr coordinates above (used for both pulling & pushing), we might also want to
1616 # log in to DockerHub (with a read-only token) so we aren't hit by rate limits when pulling the linuxkit pkgs.
17- # To do so, set the secret DOCKER_USERNAME and DOCKER_PASSWORD in the repo secrets, and set the below to yes.
17+ # To do so, set the secret DOCKERHUB_USERNAME and DOCKERHUB_PASSWORD in the repo secrets, and set the below to yes.
1818 LOGIN_TO_DOCKERHUB : " yes"
1919
2020 HOOK_VERSION : " 0.9.0-alpha1-build-${{github.run_number}}" # Use a forced Hook version
@@ -129,7 +129,7 @@ jobs:
129129 - name : Docker Login to DockerHub # read-only token, required to be able to pull all the linuxkit pkgs without getting rate limited.
130130 if : ${{ env.LOGIN_TO_DOCKERHUB == 'yes' }}
131131 uses : docker/login-action@v3
132- with : { registry: "docker.io", username: "${{ secrets.DOCKER_USERNAME }}", password: "${{ secrets.DOCKER_PASSWORD }}" }
132+ with : { registry: "docker.io", username: "${{ secrets.DOCKERHUB_USERNAME }}", password: "${{ secrets.DOCKERHUB_PASSWORD }}" }
133133
134134 - name : Docker Login to quay.io
135135 if : ${{ env.REGISTRY == 'quay.io' }}
You can’t perform that action at this time.
0 commit comments