We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 716a081 commit 30f2147Copy full SHA for 30f2147
1 file changed
.github/actions/docker/action.yml
@@ -67,15 +67,12 @@ runs:
67
echo "dockerfile=$DOCKERFILE" >> $GITHUB_OUTPUT
68
echo "registry=$REGISTRY" >> $GITHUB_OUTPUT
69
70
- - name: Authenticate to Container registry
71
- shell: bash
72
- id: login
73
- env:
74
- REGISTRY: ${{steps.info.outputs.registry}}
75
- run: |
76
- echo "${{ inputs.password }}" | docker login "${REGISTRY}"
77
- --username "${{ inputs.username }}"
78
- --password-stdin
+ - name: Login to Docker Hub
+ uses: docker/login-action@v3
+ with:
+ registry: ${{steps.info.outputs.registry}}
+ username: ${{inputs.username}}
+ password: ${{inputs.password}}
79
80
- name: determine tag
81
shell: bash
0 commit comments