Skip to content

Commit

Permalink
Replace DOCKER_USERNAME and DOCKER_PASSWORD secrets with `DOCKERH…
Browse files Browse the repository at this point in the history
…UB_USER` and `DOCKERHUB_PASS`
  • Loading branch information
M. Mert Yildiran committed Jan 23, 2022
1 parent f91ba36 commit b48c6f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
uses: docker/login-action@v1
with:
registry: ${{ env.DOCKER_REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_PASS }}

- name: Extract metadata (tags, labels) for Docker
id: meta
Expand Down Expand Up @@ -108,8 +108,8 @@ jobs:
uses: docker/login-action@v1
with:
registry: ${{ env.DOCKER_REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_PASS }}

- name: Extract metadata (tags, labels) for Docker
id: meta
Expand Down

0 comments on commit b48c6f8

Please sign in to comment.