fix: Make lowercase container name
All checks were successful
Build Docker / BuildSite (push) Successful in 32s

This commit is contained in:
Nathan Woodburn 2024-06-22 17:40:36 +10:00
parent 897f59e1d2
commit 9a1df327b4
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -38,6 +38,7 @@ jobs:
repo=$GITHUB_REPOSITORY repo=$GITHUB_REPOSITORY
# Remove the org name # Remove the org name
repo=${repo#*/} repo=${repo#*/}
repo=$(echo $repo | tr '[:upper:]' '[:lower:]')
echo "container=$repo" echo "container=$repo"