summaryrefslogtreecommitdiffstats
path: root/.github/workflows/android-dockerimage.yml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2019-11-28 13:57:08 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-12-05 15:51:29 -0800
commit5e05a183958dc14b5f569e72d1f21453e2a81c40 (patch)
treeccd2e042cc1a48651c7c370ca9389219fd81307f /.github/workflows/android-dockerimage.yml
parentc2d138b0f9d0f1bbd2b1c7a68372a15acf43c186 (diff)
downloadsubsurface-5e05a183958dc14b5f569e72d1f21453e2a81c40.tar.gz
GitHub Actions: ensure container names are all lower case
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.github/workflows/android-dockerimage.yml')
-rw-r--r--.github/workflows/android-dockerimage.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/android-dockerimage.yml b/.github/workflows/android-dockerimage.yml
index d67831e43..106bd99b9 100644
--- a/.github/workflows/android-dockerimage.yml
+++ b/.github/workflows/android-dockerimage.yml
@@ -27,6 +27,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/android-build-container${b}:${v}"