Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Jan 3, 2023
1 parent ac17a9b commit 9d42253
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ runs:
BIN_PATH="${{ inputs.bin_path }}"
INPUT_COLUMNS=(${{ inputs.input_columns }})
OUTPUT_COLUMNS=(${{ inputs.output_columns }})
if [[ ! -f "${{ inputs.action }}" ]]; then
echo "::warning::No action file found at: ${{ inputs.action }}"
exit 0
fi
for input_column in ${INPUT_COLUMNS[@]}; do
EXTRA_ARGS="${EXTRA_ARGS} --inputColumns ${input_column}"
Expand Down

0 comments on commit 9d42253

Please sign in to comment.