We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 151de13 commit 511e8a0Copy full SHA for 511e8a0
entrypoint.sh
@@ -51,6 +51,11 @@ echo "previous_version_minor=${PREV_REV_MINOR}" >>"$GITHUB_OUTPUT"
51
52
53
CZ_CMD=('cz')
54
+
55
+if [[ $INPUT_CONFIG ]]; then
56
+ CZ_CMD+=("--config ${CONFIG}")
57
+fi
58
59
if [[ $INPUT_DEBUG == 'true' ]]; then
60
CZ_CMD+=('--debug')
61
fi
@@ -108,10 +113,6 @@ else
108
113
ACTOR=$GITHUB_ACTOR
109
114
110
115
111
-if [[ $INPUT_CONFIG ]]; then
112
- CZ_CMD+=("--config ${CONFIG}")
-fi
-
116
REV="$(cz version --project)"
117
if [[ $REV == "$PREV_REV" ]]; then
118
INPUT_PUSH='false'
0 commit comments