From b5a296bfc6fc7963c5bab3222a1ca83a7adbde83 Mon Sep 17 00:00:00 2001 From: Jeremy PLANCKEEL Date: Tue, 13 Feb 2024 10:04:15 +0100 Subject: [PATCH] fix: correct docker build Signed-off-by: Jeremy PLANCKEEL --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 67aba82..639f082 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,11 +59,12 @@ jobs: uses: docker/login-action@v2 if: "steps.tag.outputs.value != ''" with: - username: ${{secrets.DOCKER_USERNAME}} - password: ${{ secrets.DOCKER_AUTH_TOKEN }} + username: ${{secrets.DOCKERHUB_USERNAME}} + password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push uses: docker/build-push-action@v5 + if: "steps.tag.outputs.value != ''" with: push: true tags: jplanckeel/scope:${{steps.version_tag.outputs.tag}}