Skip to content

Commit

Permalink
Fix github CI docker login step.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-aranda committed Dec 19, 2024
1 parent c7a7dd7 commit a437f9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: echo ${{steps.vars.outputs.tag}}

- name: Log into Docker Hub
run: echo ${{ secrets.DOCKER_TOKEN }} | docker login --username ${{ secrets.DOCKER_USERNAME }} --password-stdin
run: docker login --username ${{ secrets.DOCKER_USERNAME }} --password ${{ secrets.DOCKER_TOKEN }}

- name: Pull previous images
run: |
Expand Down

0 comments on commit a437f9f

Please sign in to comment.