From eeb721c581fa58806a63c42172f988223605440a Mon Sep 17 00:00:00 2001 From: Dikshant Adhikari Date: Thu, 18 Aug 2022 01:47:24 -0400 Subject: [PATCH] fix: syntax for docker username as env var --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index efa49b2..973cf68 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -30,7 +30,7 @@ jobs: - name: Log into Docker Hub uses: docker/login-action@v1 with: - username: secrets.DOCKERHUB_USERNAME + username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} - name: Build and push Docker image