From 80f44543716e5f37c46c920ad74dbaae6111521c Mon Sep 17 00:00:00 2001 From: Min RK Date: Wed, 5 May 2021 20:58:53 +0200 Subject: [PATCH] Backport PR #3457: ci: fix typo in environment variable When i setup the release workflow i made a typo in an environment variable so signing into Docker Hub now fails. Observed in https://github.com/jupyterhub/jupyterhub/pull/3456 issuecomment-832923798. Signed-off-by: Min RK --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bbee9967..88893f05 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -114,7 +114,7 @@ jobs: # https://github.com/jupyterhub/jupyterhub/settings/secrets/actions if: env.REGISTRY != 'localhost:5000/' run: | - docker login -u "${{ secrets.DOCKER_USERNAME }}" -p "${{ secrets.DOCKERHUB_TOKEN }}" + docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" -p "${{ secrets.DOCKERHUB_TOKEN }}" # https://github.com/jupyterhub/action-major-minor-tag-calculator # If this is a tagged build this will return additional parent tags.