diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-11-28 13:57:08 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-05 15:51:29 -0800 |
commit | 5e05a183958dc14b5f569e72d1f21453e2a81c40 (patch) | |
tree | ccd2e042cc1a48651c7c370ca9389219fd81307f /.github/workflows/android-dockerimage.yml | |
parent | c2d138b0f9d0f1bbd2b1c7a68372a15acf43c186 (diff) | |
download | subsurface-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.yml | 1 |
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}" |