chore(entrypoint): update argument passing

This commit is contained in:
orhun
2021-06-19 22:55:24 +03:00
parent 2b1e4ab361
commit 79d085ac4a
2 changed files with 2 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ runs:
image: "Dockerfile" image: "Dockerfile"
args: args:
- --config=${{ inputs.config }} - --config=${{ inputs.config }}
- ${{ inputs.args }}
branding: branding:
icon: "triangle" icon: "triangle"
color: "orange" color: "orange"

View File

@@ -7,7 +7,7 @@ OUTPUT=${OUTPUT:="git-cliff/CHANGELOG.md"}
mkdir -p "$(dirname $OUTPUT)" mkdir -p "$(dirname $OUTPUT)"
# Execute git-cliff # Execute git-cliff
git-cliff "$@" git-cliff $@
exit_code=$? exit_code=$?
# Output to console # Output to console