We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a25a97 commit a179bd5Copy full SHA for a179bd5
.github/actions/azdo-build/action.yml
@@ -118,7 +118,7 @@ runs:
118
--org ${{ inputs.azdo-org }} \
119
--output json \
120
--project ${{ inputs.azdo-project }} \
121
- $(echo "${{ inputs.pipeline-variable }}" | while IFS= read -r line; do [ -n "$line" ] && printf '--variable %q ' "$line"; done)
+ $(echo "${{ inputs.pipeline-variable }}" | while IFS= read -r line; do [ -n "$line" ] && printf '%s ' "--variable=$(printf '%q' "$line")"; done)
122
)
123
124
RUN_ID=$(echo "$OUTPUT" | jq -r '.id')
0 commit comments