Skip to content

Commit

Permalink
Update Docker Hub login
Browse files Browse the repository at this point in the history
Use new token and remove unnecessary encryption of username.
  • Loading branch information
victorlin committed Dec 20, 2022
1 parent 0a55666 commit baea2c9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/builder-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
uses: docker/login-action@v2
with:
registry: docker.io
username: ${{ secrets.DOCKER_LOGIN }}
password: ${{ secrets.DOCKER_PASSWORD }}
username: nextstrainbot
password: ${{ secrets.DOCKER_TOKEN }}

- name: "Get docker build checksum"
id: docker-build-checksum
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ jobs:
uses: docker/login-action@v2
with:
registry: docker.io
username: ${{ secrets.DOCKER_LOGIN }}
password: ${{ secrets.DOCKER_PASSWORD }}
username: nextstrainbot
password: ${{ secrets.DOCKER_TOKEN }}

- name: "Build docker image (${{ matrix.arch }})"
run: |
Expand Down Expand Up @@ -360,8 +360,8 @@ jobs:
uses: docker/login-action@v2
with:
registry: docker.io
username: ${{ secrets.DOCKER_LOGIN }}
password: ${{ secrets.DOCKER_PASSWORD }}
username: nextstrainbot
password: ${{ secrets.DOCKER_TOKEN }}

- name: "Build and publish Docker container images to Docker Hub"
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ jobs:
uses: docker/login-action@v2
with:
registry: docker.io
username: ${{ secrets.DOCKER_LOGIN }}
password: ${{ secrets.DOCKER_PASSWORD }}
username: nextstrainbot
password: ${{ secrets.DOCKER_TOKEN }}

- name: "Build docker image"
run: |
Expand Down

0 comments on commit baea2c9

Please sign in to comment.