From ec7be25db98121d351ca850d8555ec437f30f171 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Mon, 2 May 2022 20:54:53 +0300 Subject: [PATCH] fix(env): use the correct environment variable for output --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 3314b10..b8036b3 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -7,7 +7,7 @@ OUTPUT=${OUTPUT:="git-cliff/CHANGELOG.md"} mkdir -p "$(dirname $OUTPUT)" # Execute git-cliff -git-cliff $@ +GIT_CLIFF_OUTPUT="$OUTPUT" git-cliff $@ exit_code=$? # Output to console