Skip to content
This repository was archived by the owner on May 31, 2019. It is now read-only.

Commit bfba147

Browse files
committed
Merge pull request #41 from vlesierse/fix-cibuild
Checkout the according tag of the Home repo, fix master build
2 parents cadbbb5 + e6b7191 commit bfba147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/run-with-all-tags.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -e # Exit immediately upon failure
88
for tag in `.ci/find-tags.sh $1`; do
99
TAG=${IMAGE}:${tag}
1010
BRANCH=master
11-
if [[ ${tag} == "nightly" ]]; then BRANCH=dev; fi
11+
if [[ ${tag} == "nightly" ]]; then BRANCH=dev; else BRANCH=tags/v${tag} ; fi
1212
echo "[CI] ----------------------------------"
1313
echo "[CI] Verifying '$2' app with '$TAG'"
1414
.ci/run-app.sh $TAG $2 $BRANCH

0 commit comments

Comments
 (0)