From cf8536b2494682533f0cb331caaea1e7972bb0cc Mon Sep 17 00:00:00 2001 From: Sven Luijten Date: Fri, 21 Apr 2023 14:29:47 +0200 Subject: [PATCH] Default to fly.toml as config file --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index bcda0eb..2c424ba 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -22,7 +22,7 @@ app="${INPUT_NAME:-pr-$PR_NUMBER-$REPO_OWNER-$REPO_NAME}" region="${INPUT_REGION:-${FLY_REGION:-iad}}" org="${INPUT_ORG:-${FLY_ORG:-personal}}" image="$INPUT_IMAGE" -config="$INPUT_CONFIG" +config="${$INPUT_CONFIG:-fly.toml}" if ! echo "$app" | grep "$PR_NUMBER"; then echo "For safety, this action requires the app's name to contain the PR number."