From 08fff358b4897d2a78b8e8d27417218d6d7aa9ca Mon Sep 17 00:00:00 2001 From: Lukasz Raczylo Date: Thu, 22 Aug 2024 20:18:53 +0100 Subject: [PATCH] Update entrypoint.sh --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index a26dd7e..e43d9b1 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,7 +1,7 @@ #!/bin/bash set -e -FLAGS="" +FLAGS="$SEMVER_RAW_FLAGS" if [[ -z "$INPUT_CONFIG_FILE" ]]; then echo "Set the configuration file path." @@ -51,4 +51,4 @@ OUT_SEMVER_GEN=$(/go/src/app/semver-gen generate $FLAGS $*) [ $? -eq 0 ] || exit 1 CLEAN_SEMVER=$(echo $OUT_SEMVER_GEN | sed -e 's|SEMVER ||g') echo "semantic_version=$CLEAN_SEMVER" >> $GITHUB_OUTPUT -echo $OUT_SEMVER_GEN \ No newline at end of file +echo $OUT_SEMVER_GEN