From 94912de6f3fd831e3c0adf4ad47a68c96de565c5 Mon Sep 17 00:00:00 2001 From: IvayloRashkov <47078490+ivorashkov@users.noreply.github.com> Date: Mon, 17 Feb 2025 17:11:50 +0200 Subject: [PATCH] fixing dockerhub repository name --- .github/workflows/pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 091df1bfcb..d0c3c78a28 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -28,12 +28,12 @@ jobs: - name: Log in to Docker Hub Container Registry uses: docker/login-action@v3 with: - username: ${{ vars.DOCKERHUB_USERNAME }} # Ensure your Docker Hub username is stored as a secret - password: ${{ secrets.DOCKERHUB_TOKEN }} # Ensure your Docker Hub token is stored as a secret + username: ${{ vars.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push Docker image to Docker Hub Registry uses: docker/build-push-action@v6 with: context: . push: true - tags: user/app:latest # Replace 'user/app' with your Docker Hub repository name + tags: ivaylorashkov/go-ethereum:latest