Skip to content

Commit 43e776a

Browse files
first pass cerc refactor in cicd
1 parent 918a30d commit 43e776a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/publish.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Run docker build
18-
run: docker build -t vulcanize/go-ethereum .
18+
run: docker build -t cerc-io/go-ethereum .
1919

2020
geth-unit-test:
2121
name: Run geth unit test
@@ -90,7 +90,7 @@ jobs:
9090
- uses: actions/checkout@v3
9191
with:
9292
ref: ${{ env.ipld-eth-db-ref }}
93-
repository: vulcanize/ipld-eth-db
93+
repository: cerc-io/ipld-eth-db
9494
path: "./ipld-eth-db/"
9595
fetch-depth: 0
9696

0 commit comments

Comments
 (0)