From 1aaa53622dea803776b3f44feedcff23ec606909 Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Tue, 18 Feb 2020 16:34:28 -0500 Subject: [PATCH] Pass through travis tag in run.sh --- ci/image/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/image/run.sh b/ci/image/run.sh index 6dd3f261..6a1831b0 100755 --- a/ci/image/run.sh +++ b/ci/image/run.sh @@ -7,7 +7,7 @@ main() { docker build ci/image imageTag="$(docker build -q ci/image)" - docker run -t --rm -e CI -e GITHUB_TOKEN -v "$(yarn cache dir):/usr/local/share/.cache/yarn/v6" -v "$PWD:/repo" -w /repo "$imageTag" "$*" + docker run -t --rm -e CI -e GITHUB_TOKEN -e TRAVIS_TAG -v "$(yarn cache dir):/usr/local/share/.cache/yarn/v6" -v "$PWD:/repo" -w /repo "$imageTag" "$*" } main "$@"