File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 5757 - name : Validate properties URL
5858 id : validateUrl
5959 run : |
60- payload="${{ steps.parseIssue.outputs.payload }}"
61- properties_url=$(echo "$payload" | jq -r '."Properties File URL"')
62- if [ -z "$properties_url" ]; then
60+ properties_url="${{ fromJson(steps.parseIssue.outputs.payload)['Properties File URL'] }}"
61+ if [ -z "$properties_url"; then
6362 echo "Properties URL is empty. Please provide a valid URL."
6463 exit 1
6564 fi
7170 - name : Read and validate properties txt file
7271 id : parseProps
7372 run : |
74- properties_url=$(echo "${{ steps.parseIssue.outputs.payload }}" | jq -r '." Properties File URL"')
73+ properties_url="${{ fromJson( steps.parseIssue.outputs.payload)[' Properties File URL'] }}"
7574 python -u scripts/parse_and_validate_properties_txt.py \
7675 ${{ steps.determineCategory.outputs.category }} \
7776 "$properties_url"
You can’t perform that action at this time.
0 commit comments