Skip to content

Commit

Permalink
fix docker login action
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasferrandiz committed Apr 9, 2024
1 parent bec8a84 commit 62efaac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/image-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
- name: Login to Container Registry
uses: docker/login-action@v3
with:
username: ${{ secrets.docker_username }}
password: ${{ secrets.docker_password }}
username: ${{ env.DOCKER_USERNAME }}
password: ${{ env.DOCKER_PASSWORD }}

- name: Build container image
uses: docker/build-push-action@v5
Expand Down

0 comments on commit 62efaac

Please sign in to comment.