Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Jul 28, 2022
1 parent 55734ad commit 1383e18
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,14 @@ runs:
- run: |
EXTRA_ARGS=""
BIN_PATH="${{ inputs.bin_path }}"
INPUT_COLUMNS=(${{ inputs.input_columns }})
OUTPUT_COLUMNS=(${{ inputs.output_columns }})
for input_column in (${{ join(inputs.input_columns, ' ') }}); do
for input_column in $INPUT_COLUMNS; do
EXTRA_ARGS="${EXTRA_ARGS} --inputColumns ${input_column}"
done

for output_column in (${{ join(inputs.output_columns, ' ') }}); do
for output_column in $OUTPUT_COLUMNS; do
EXTRA_ARGS="${EXTRA_ARGS} --outputColumns ${output_column}"
done

Expand Down

0 comments on commit 1383e18

Please sign in to comment.