From 31939aa9e09d80e0408796beb5983d99bc6ee157 Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Fri, 23 Dec 2022 14:33:01 -0500 Subject: [PATCH] ci: Update Docker build workflows Signed-off-by: Thane Thomson --- .github/workflows/tendermint-docker.yml | 4 ++-- .github/workflows/testapp-docker.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tendermint-docker.yml b/.github/workflows/tendermint-docker.yml index 721a2717b66..1f65d8bf2bf 100644 --- a/.github/workflows/tendermint-docker.yml +++ b/.github/workflows/tendermint-docker.yml @@ -1,6 +1,6 @@ name: Docker # Build & Push rebuilds the Tendermint docker image on every push to main and creation of tags -# and pushes the image to https://hub.docker.com/r/tendermint/tendermint +# and pushes the image to https://hub.docker.com/r/cometbft/tendermint on: push: branches: @@ -19,7 +19,7 @@ jobs: - name: Prepare id: prep run: | - DOCKER_IMAGE=tendermint/tendermint + DOCKER_IMAGE=cometbft/tendermint VERSION=noop if [[ $GITHUB_REF == refs/tags/* ]]; then VERSION=${GITHUB_REF#refs/tags/} diff --git a/.github/workflows/testapp-docker.yml b/.github/workflows/testapp-docker.yml index 310e80e382f..c562f6efe4b 100644 --- a/.github/workflows/testapp-docker.yml +++ b/.github/workflows/testapp-docker.yml @@ -1,6 +1,6 @@ name: Docker E2E Node # Build & Push rebuilds the e2e Testapp docker image on every push to main and creation of tags -# and pushes the image to https://hub.docker.com/r/tendermint/e2e-node +# and pushes the image to https://hub.docker.com/r/cometbft/e2e-node on: push: branches: @@ -19,7 +19,7 @@ jobs: - name: Prepare id: prep run: | - DOCKER_IMAGE=tendermint/e2e-node + DOCKER_IMAGE=cometbft/e2e-node VERSION=noop if [[ $GITHUB_REF == refs/tags/* ]]; then VERSION=${GITHUB_REF#refs/tags/}