mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 09:23:48 +00:00
fixing dockerhub repository name
This commit is contained in:
parent
9285caa6a8
commit
94912de6f3
1 changed files with 3 additions and 3 deletions
6
.github/workflows/pipeline.yml
vendored
6
.github/workflows/pipeline.yml
vendored
|
|
@ -28,12 +28,12 @@ jobs:
|
||||||
- name: Log in to Docker Hub Container Registry
|
- name: Log in to Docker Hub Container Registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
username: ${{ vars.DOCKERHUB_USERNAME }} # Ensure your Docker Hub username is stored as a secret
|
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }} # Ensure your Docker Hub token is stored as a secret
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Build and push Docker image to Docker Hub Registry
|
- name: Build and push Docker image to Docker Hub Registry
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
push: true
|
push: true
|
||||||
tags: user/app:latest # Replace 'user/app' with your Docker Hub repository name
|
tags: ivaylorashkov/go-ethereum:latest
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue