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 ba9f910 commit 37e9150Copy full SHA for 37e9150
.github/workflows/build.yml
@@ -100,7 +100,7 @@ jobs:
100
if: ${{ steps.upload.outputs.result == 'success' }}
101
run: |
102
file_urls="${{ steps.upload.outputs.file-urls }}"
103
- file_urls=$(echo "$file_urls" | jq -r 'to_entries | .[] | .value' | sed 's/"/\\"/g')
+ file_urls=$(echo "$file_urls" | jq -r 'to_entries | .[] | .value' | sed 's/"/\\"/g' | tr '\n' ',')
104
IFS=',' read -ra urls <<< "$file_urls"
105
for url in "${urls[@]}"; do
106
echo "### Downloads :rocket: $url" >> $GITHUB_STEP_SUMMARY
0 commit comments