mirror of https://github.com/OpenVidu/openvidu.git
ci-scripts: fix wrong env var input description
parent
378f6ea2ca
commit
8d150d27ae
|
@ -38,7 +38,7 @@ on:
|
|||
required: true
|
||||
default: "latest"
|
||||
EDGE_VERSION:
|
||||
description: "Version of Edge to use. Must be a valid image tag from https://hub.docker.com/r/selenium/standalone-opera/tags"
|
||||
description: "Version of Edge to use. Must be a valid image tag from https://hub.docker.com/r/selenium/standalone-edge/tags"
|
||||
required: true
|
||||
default: "latest"
|
||||
jobs:
|
||||
|
|
|
@ -290,7 +290,7 @@ if [[ "${PREPARE_TEST_ENVIRONMENT}" == true ]]; then
|
|||
|
||||
# Connect e2e test container to network bridge so it is vissible for browser and media server containers
|
||||
if [[ -n "${TEST_IMAGE}" ]]; then
|
||||
E2E_CONTAINER_ID="$(docker ps | grep "${TEST_IMAGE}" | awk '{ print $1 }')" || echo "Docker container not found for image ${TEST_IMAGE}"
|
||||
E2E_CONTAINER_ID="$(docker ps | grep "$TEST_IMAGE" | awk '{ print $1 }')" || echo "Docker container not found for image ${TEST_IMAGE}"
|
||||
if [[ -n "${E2E_CONTAINER_ID}" ]]; then
|
||||
docker network connect bridge "${E2E_CONTAINER_ID}"
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue