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 6cc8470 commit 6bc3670Copy full SHA for 6bc3670
1 file changed
.github/workflows/deploy.yml
@@ -291,8 +291,8 @@ jobs:
291
echo "| Name | Size |" >> "$GITHUB_STEP_SUMMARY"
292
echo "| :--- | ---: |" >> "$GITHUB_STEP_SUMMARY"
293
294
- echo "$artifacts_json"
295
- | jq -c '[.artifacts[]] | sort_by(.size_in_bytes) | reverse | .[]'
+ echo "$artifacts_json" \
+ | jq -c '[.artifacts[]] | sort_by(.size_in_bytes) | reverse | .[]' \
296
| while read -r artifact; do
297
name=$(echo "$artifact" | jq -r '.name')
298
size_bytes=$(echo "$artifact" | jq -r '.size_in_bytes')
0 commit comments