Skip to content

Commit

Permalink
fix: username and password secret reference in publish-docker-hub.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgrittner committed Aug 19, 2024
1 parent ae8f1c6 commit 907eade
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-docker-hub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
username: ${{ vars.DOCKER_PASSWORD }}
password: ${{ secrets.DOCKER_USERNAME }}
- name: Build and push Docker images
run: cd docker && ./release_images.sh

0 comments on commit 907eade

Please sign in to comment.