We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09df4cc commit 8920c2cCopy full SHA for 8920c2c
.github/workflows/deploy.yml
@@ -237,8 +237,8 @@ jobs:
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
+${{ inputs.custom_build_command }}
+CUSTOM_BUILD_EOF
242
else
243
# Default Maven build command with conditional docs profile
244
cat > /tmp/build-deploy.sh << 'DEFAULT_BUILD_EOF'
@@ -255,8 +255,7 @@ jobs:
255
fi
256
DEFAULT_BUILD_EOF
257
258
- echo "Contents of /tmp/build-deploy.sh:"
259
- cat /tmp/build-deploy.sh
+
260
chmod +x /tmp/build-deploy.sh
261
bash /tmp/build-deploy.sh
262
0 commit comments