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

This commit is contained in:
William Banfield
2022-12-08 10:12:15 -05:00
committed by GitHub
parent 3324f49fb7
commit 365af06517

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