From 1233cc8e8bb5ac59a1a2a175ec9fac219851686b Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 8 Dec 2022 10:46:55 -0500 Subject: [PATCH] workflow: correct the name for the e2e app in the workflow (#9850) (#9859) (cherry picked from commit 365af0651762b9e2c337669c593f730d06afbfbb) Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com> --- .github/workflows/testapp-docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/testapp-docker.yml b/.github/workflows/testapp-docker.yml index 9e8e59a47..310e80e38 100644 --- a/.github/workflows/testapp-docker.yml +++ b/.github/workflows/testapp-docker.yml @@ -1,6 +1,6 @@ -name: Testapp Docker -# Build & Push rebuilds the Testapp docker image on every push to main and creation of tags -# and pushes the image to https://hub.docker.com/r/tendermint/testapp +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 on: push: branches: @@ -19,7 +19,7 @@ jobs: - name: Prepare id: prep run: | - DOCKER_IMAGE=tendermint/testapp + DOCKER_IMAGE=tendermint/e2e-node VERSION=noop if [[ $GITHUB_REF == refs/tags/* ]]; then VERSION=${GITHUB_REF#refs/tags/}