From 7c945771a5ad94ff208a40f86aae11378b417a9d Mon Sep 17 00:00:00 2001 From: jmqm Date: Mon, 9 Aug 2021 13:15:59 -0500 Subject: [PATCH] Update dockerize.yml --- .github/workflows/dockerize.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dockerize.yml b/.github/workflows/dockerize.yml index ca3ebfc..4ac2b6e 100644 --- a/.github/workflows/dockerize.yml +++ b/.github/workflows/dockerize.yml @@ -29,8 +29,8 @@ jobs: uses: peter-evans/dockerhub-description@v2.4.3 with: username: ${{ secrets.DOCKER_HUB_USERNAME }} - password: ${{ secrets.DOCKER_HUB_PASSWORD }} - repository: $USER/$REPOSITORY + password: ${{ secrets.DOCKER_HUB_PASSWORD }} # This action does not support tokens. + repository: ${{ env.USER }}/${{ env.REPOSITORY }} short-description: ${{ github.event.repository.description }} readme-filepath: ./README.md @@ -40,4 +40,4 @@ jobs: with: context: . push: true - tags: $USER/$REPOSITORY:$TAG + tags: ${{ env.USER }}/${{ env.REPOSITORY }}:${{ env.TAG }}