Skip to content

Commit

Permalink
fix: improve conditional test
Browse files Browse the repository at this point in the history
  • Loading branch information
barjin committed Dec 17, 2024
1 parent 36d0004 commit a81cb87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git-cliff-release/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ runs:
set -x
enhance_context_args=()
if (( ${{ inputs.no-github }} )); then
if [[ ${{ inputs.no-github }} = true ]]; then
enhance_context_args+=(--no-github)
fi
Expand Down Expand Up @@ -146,7 +146,7 @@ runs:
print_changelog_args+=(--output "$out_file")
fi
if (( ${{ inputs.no-github }} )); then
if [[ ${{ inputs.no-github }} = true ]]; then
enhance_context_args+=(--no-github)
fi
Expand Down

0 comments on commit a81cb87

Please sign in to comment.