Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 authored Aug 20, 2023
1 parent b7e8c93 commit aeae1ef
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,31 +35,31 @@ runs:
EXTRA_ARGS=""
if [[ -n '${{ inputs.color }}' ]]; then
EXTRA_ARGS+=" -color=${{ inputs.color }}"
EXTRA_ARGS="${EXTRA_ARGS} -color=${{ inputs.color }}"
fi
if [[ -n '${{ inputs.green }}' ]]; then
EXTRA_ARGS+=" -green=${{ inputs.green }}"
EXTRA_ARGS="${EXTRA_ARGS} -green=${{ inputs.green }}"
fi
if [[ -n '${{ inputs.target }}' ]]; then
EXTRA_ARGS+=" -target=${{ inputs.target }}"
EXTRA_ARGS="${EXTRA_ARGS} -target=${{ inputs.target }}"
fi
if [[ -n '${{ inputs.text }}' ]]; then
EXTRA_ARGS+=" -text=${{ inputs.text }}"
EXTRA_ARGS="${EXTRA_ARGS} -text=${{ inputs.text }}"
fi
if [[ -n '${{ inputs.value }}' ]]; then
EXTRA_ARGS+=" -value=${{ inputs.value }}"
EXTRA_ARGS="${EXTRA_ARGS} -value=${{ inputs.value }}"
fi
if [[ -n '${{ inputs.yellow }}' ]]; then
EXTRA_ARGS+=" -yellow=${{ inputs.yellow }}"
EXTRA_ARGS="${EXTRA_ARGS} -yellow=${{ inputs.yellow }}"
fi
if [[ -n '${{ inputs.link }}' ]]; then
EXTRA_ARGS+=" -link=${{ inputs.link }}"
EXTRA_ARGS="${EXTRA_ARGS} -link=${{ inputs.link }}"
fi
TEMP_DIR=$(mktemp -d)
Expand Down

0 comments on commit aeae1ef

Please sign in to comment.