From 7cb1b8fa7fa3d97bf4a19429761be34893efad6d Mon Sep 17 00:00:00 2001 From: Victor Lin <13424970+victorlin@users.noreply.github.com> Date: Tue, 20 Dec 2022 12:33:25 -0500 Subject: [PATCH] Update Docker Hub login Use new token and remove unnecessary encryption of username. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a4daafe..eec871e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,8 +95,8 @@ jobs: - uses: docker/login-action@v1 with: registry: docker.io - username: ${{ secrets.DOCKER_LOGIN }} - password: ${{ secrets.DOCKER_PASSWORD }} + username: nextstrainbot + password: ${{ secrets.DOCKER_TOKEN }} - name: Copy $TAG images to Docker Hub run: ./devel/copy-images -i ghcr.io -o docker.io -t ${{ needs.build.outputs.tag }} @@ -117,8 +117,8 @@ jobs: - uses: docker/login-action@v1 with: registry: docker.io - username: ${{ secrets.DOCKER_LOGIN }} - password: ${{ secrets.DOCKER_PASSWORD }} + username: nextstrainbot + password: ${{ secrets.DOCKER_TOKEN }} - name: Copy $TAG + latest images to Docker Hub run: |