Skip to content

Commit

Permalink
service name to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
schliflo committed Aug 31, 2020
1 parent 03ea589 commit c1582f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fi
BRANCH=$(echo $GITHUB_REF | rev | cut -f 1 -d / | rev)
REPO=$(echo $GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]')
GCR_IMAGE_NAME=${INPUT_REGISTRY}/${INPUT_PROJECT}/${REPO}${IMAGE_POSTFIX}
SERVICE_NAME=${INPUT_SERVICE_NAME}--${BRANCH}
SERVICE_NAME=${INPUT_SERVICE_NAME}--${BRANCH} | tr '[:upper:]' '[:lower:]')

if [ "$INPUT_HOOK_VARS_AFTER" ]; then
sh $INPUT_HOOK_VARS_AFTER
Expand Down

0 comments on commit c1582f9

Please sign in to comment.