From 36a8210bc32a41b4d4fdd637b7d6d8e7827e2fb4 Mon Sep 17 00:00:00 2001 From: Tom Eichlersmith <31970302+tomeichlersmith@users.noreply.github.com> Date: Wed, 19 Jul 2023 09:54:46 -0500 Subject: [PATCH] use LDMX_DOCKER_TAG env var This is just to unify how the image is selected so users can set which dev image should be used in the env of the workflow. Right now we just use ldmx/dev:latest everywhere but I could forsee us pinning to a specific dev image version in the future. --- .github/actions/setup/setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup/setup.sh b/.github/actions/setup/setup.sh index 718569d9f..ccf4c9c90 100644 --- a/.github/actions/setup/setup.sh +++ b/.github/actions/setup/setup.sh @@ -16,8 +16,8 @@ source ${GITHUB_ACTION_PATH}/../common.sh __main__() { start_group Pull the Environment - docker pull ldmx/dev:latest - docker inspect ldmx/dev:latest + docker pull ${LDMX_DOCKER_TAG} + docker inspect ${LDMX_DOCKER_TAG} end_group start_group Configure the Build