We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8920c2c commit aa2b498Copy full SHA for aa2b498
.github/workflows/deploy.yml
@@ -236,9 +236,7 @@ jobs:
236
# Write build command to temporary script file
237
if [[ -n "${{ inputs.custom_build_command }}" ]]; then
238
# Custom build command provided by caller
239
- cat > /tmp/build-deploy.sh << CUSTOM_BUILD_EOF
240
-${{ inputs.custom_build_command }}
241
-CUSTOM_BUILD_EOF
+ printf '%s\n' '${{ inputs.custom_build_command }}' > /tmp/build-deploy.sh
242
else
243
# Default Maven build command with conditional docs profile
244
cat > /tmp/build-deploy.sh << 'DEFAULT_BUILD_EOF'
0 commit comments