GitHub Actions: ensure container names are all lower case

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2019-11-28 13:57:08 -08:00
parent c2d138b0f9
commit 5e05a18395
4 changed files with 4 additions and 0 deletions

View file

@ -25,6 +25,7 @@ jobs:
v=${{ env.VERSION }}
b=${{ github.ref }} # -BRANCH suffix, unless the branch is master
b=${b/refs\/heads\//}
b=${b,,} # the name needs to be all lower case
if [ $b = "master" ] ; then b="" ; else b="-$b" ; fi
echo "::set-env name=NAME::subsurface/trusty-qt512${b}:${v}"