fix: Fix default values used incorrectly.

This commit is contained in:
skyArony 2024-02-18 22:43:02 +08:00
parent bb271fe4c6
commit a1b383f560
1 changed files with 4 additions and 4 deletions

View File

@ -40,17 +40,17 @@ inputs:
required: false required: false
default: "" default: ""
SCRIPT_BEFORE_REQUIRED: SCRIPT_BEFORE_REQUIRED:
description: "If true, the action will fail if the before script fails" description: "If not an empty string, the action will fail if the before script fails. Note: The string 'false' will be treated as true"
required: false required: false
default: "false" default: ""
SCRIPT_AFTER: SCRIPT_AFTER:
description: "Script to run on host machine after rsync" description: "Script to run on host machine after rsync"
required: false required: false
default: "" default: ""
SCRIPT_AFTER_REQUIRED: SCRIPT_AFTER_REQUIRED:
description: "If true, the action will fail if the after script fails" description: "If not an empty string, the action will fail if the after script fails. Note: The string 'false' will be treated as true"
required: false required: false
default: "false" default: ""
outputs: outputs:
status: status:
description: "Status" description: "Status"