Skip to content

Commit d3aad1a

Browse files
author
David Robertson
authored
Don't try to login to dockerhub (#127)
1 parent 0890891 commit d3aad1a

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/docker.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@ jobs:
2929
- name: Inspect builder
3030
run: docker buildx inspect
3131

32-
- name: Log in to DockerHub
33-
uses: docker/login-action@v2
34-
with:
35-
username: ${{ secrets.DOCKERHUB_USERNAME }}
36-
password: ${{ secrets.DOCKERHUB_TOKEN }}
32+
# Disabled while I wait for IT/SRE to grant perms for this token
33+
# - name: Log in to DockerHub
34+
# uses: docker/login-action@v2
35+
# with:
36+
# username: ${{ secrets.DOCKERHUB_USERNAME }}
37+
# password: ${{ secrets.DOCKERHUB_TOKEN }}
3738

3839
- name: Log in to GHCR
3940
uses: docker/login-action@v2
@@ -48,7 +49,7 @@ jobs:
4849
with:
4950
images: |
5051
ghcr.io/${{ github.repository }}
51-
docker.io/${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}
52+
# docker.io/${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}
5253
flavor: |
5354
latest=false
5455
tags: |

0 commit comments

Comments
 (0)