@@ -12,16 +12,16 @@ jobs:
1212 steps :
1313 - uses : actions/checkout@v2
1414 - name : Run docker build
15- run : docker build -t vulcanize /go-ethereum -f Dockerfile .
15+ run : docker build -t cerc-io /go-ethereum -f Dockerfile .
1616 - name : Get the version
1717 id : vars
1818 run : echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7})
1919 - name : Tag docker image
20- run : docker tag vulcanize /go-ethereum docker.pkg.github.com/vulcanize /go-ethereum/go-ethereum:${{steps.vars.outputs.sha}}
20+ run : docker tag cerc-io /go-ethereum docker.pkg.github.com/cerc-io /go-ethereum/go-ethereum:${{steps.vars.outputs.sha}}
2121 - name : Docker Login
2222 run : echo ${{ secrets.GITHUB_TOKEN }} | docker login https://docker.pkg.github.com -u vulcanize --password-stdin
2323 - name : Docker Push
24- run : docker push docker.pkg.github.com/vulcanize /go-ethereum/go-ethereum:${{steps.vars.outputs.sha}}
24+ run : docker push docker.pkg.github.com/cerc-io /go-ethereum/go-ethereum:${{steps.vars.outputs.sha}}
2525 push_to_registries :
2626 name : Publish assets to Release
2727 runs-on : ubuntu-latest
@@ -35,13 +35,13 @@ jobs:
3535 - name : Docker Login to Github Registry
3636 run : echo ${{ secrets.GITHUB_TOKEN }} | docker login https://docker.pkg.github.com -u vulcanize --password-stdin
3737 - name : Docker Pull
38- run : docker pull docker.pkg.github.com/vulcanize /go-ethereum/go-ethereum:${{steps.vars.outputs.sha}}
38+ run : docker pull docker.pkg.github.com/cerc-io /go-ethereum/go-ethereum:${{steps.vars.outputs.sha}}
3939 - name : Copy ethereum binary file
40- run : docker run --rm --entrypoint cat docker.pkg.github.com/vulcanize /go-ethereum/go-ethereum:${{steps.vars.outputs.sha}} /usr/local/bin/geth > geth-linux-amd64
40+ run : docker run --rm --entrypoint cat docker.pkg.github.com/cerc-io /go-ethereum/go-ethereum:${{steps.vars.outputs.sha}} /usr/local/bin/geth > geth-linux-amd64
4141 - name : Docker Login to Docker Registry
4242 run : echo ${{ secrets.VULCANIZEJENKINS_PAT }} | docker login -u vulcanizejenkins --password-stdin
4343 - name : Tag docker image
44- run : docker tag docker.pkg.github.com/vulcanize /go-ethereum/go-ethereum:${{steps.vars.outputs.sha}} vulcanize/vdb-geth:${{steps.vars.outputs.tag}}
44+ run : docker tag docker.pkg.github.com/cerc-io /go-ethereum/go-ethereum:${{steps.vars.outputs.sha}} vulcanize/vdb-geth:${{steps.vars.outputs.tag}}
4545 - name : Docker Push to Docker Hub
4646 run : docker push vulcanize/vdb-geth:${{steps.vars.outputs.tag}}
4747 - name : Get release
0 commit comments