mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 21:56:43 +00:00
build and push
This commit is contained in:
parent
40ba5daecc
commit
9d940b1be3
1 changed files with 19 additions and 0 deletions
19
.github/workflows/dockerBuild.yml
vendored
19
.github/workflows/dockerBuild.yml
vendored
|
|
@ -28,3 +28,22 @@ jobs:
|
|||
|
||||
# - name: Push image
|
||||
# run: docker push geth-custom
|
||||
|
||||
|
||||
- name: Log in to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
||||
- name: Tag and push image
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
||||
- name: Tag and push image
|
||||
run: |
|
||||
docker tag geth-custom yohands/my_first_container:latest
|
||||
docker push yohands/my_first_container:latest
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue