mirror of
https://github.com/FlipsideCrypto/fly-pr-review-apps.git
synced 2026-02-06 11:17:49 +00:00
fix lowercasing app name
This commit is contained in:
parent
14a293ef07
commit
1e439ccbf9
@ -15,7 +15,7 @@ EVENT_TYPE=$(jq -r .action /github/workflow/event.json)
|
|||||||
|
|
||||||
# Default the Fly app name to pr-{repo}-{title}-{number}-{user}
|
# Default the Fly app name to pr-{repo}-{title}-{number}-{user}
|
||||||
app="${INPUT_NAME:-pr-$REPO_NAME-$PR_TITLE-$PR_NUMBER-$USER}"
|
app="${INPUT_NAME:-pr-$REPO_NAME-$PR_TITLE-$PR_NUMBER-$USER}"
|
||||||
app="$(tr [A-Z] [a-z] <<< "$app")" # lowercase
|
app=$(echo $app | tr '[:upper:]' '[:lower:]')
|
||||||
region="${INPUT_REGION:-${FLY_REGION:-iad}}"
|
region="${INPUT_REGION:-${FLY_REGION:-iad}}"
|
||||||
org="${INPUT_ORG:-${FLY_ORG:-personal}}"
|
org="${INPUT_ORG:-${FLY_ORG:-personal}}"
|
||||||
image="$INPUT_IMAGE"
|
image="$INPUT_IMAGE"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user