workflow: correct the name for the e2e app in the workflow (#9850) (#9859)

(cherry picked from commit 365af06517)

Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com>
This commit is contained in:
mergify[bot]
2022-12-08 10:46:55 -05:00
committed by GitHub
parent 01d904b33c
commit 1233cc8e8b

View File

@@ -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/}