/.github/scripts/performance-benchmarking/run-benchmarks.sh: lowercase actor

This commit is contained in:
Dustin Brown
2021-02-05 13:41:37 -08:00
parent 8f10b7bac1
commit df3347dfef

View File

@@ -33,7 +33,8 @@ echo "Setting to $TO_SERVER: $TO_VERSION"
# use first 8 characters of TO_VERSION to differentiate
# jobs
short=${TO_VERSION:0:8}
actorShort="$ACTOR-$short"
lowered=$(echo "$ACTOR" | tr '[:upper:]' '[:lower:]')
actorShort="$lowered-$short"
jobname="$actorShort"