Skip to content

Commit

Permalink
use LDMX_DOCKER_TAG env var
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tomeichlersmith authored Jul 19, 2023
1 parent 4a49b51 commit 36a8210
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 36a8210

Please sign in to comment.