We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50a0102 commit 28e3237Copy full SHA for 28e3237
src/main.sh
@@ -132,7 +132,10 @@ if [[ "${INPUT_MODE}" == "swarm" ]];then
132
echo "::debug::Adding: --with-registry-auth"
133
EXTRA_ARGS+=("--with-registry-auth")
134
fi
135
- if [[ "${INPUT_DETACH}" != "true" ]];then
+ if [[ "${INPUT_DETACH}" == "true" ]];then
136
+ echo "::debug::Adding: --detach=true"
137
+ EXTRA_ARGS+=("--detach=true")
138
+ else
139
echo "::debug::Adding: --detach=false"
140
EXTRA_ARGS+=("--detach=false")
141
0 commit comments