Skip to content

Commit

Permalink
filter newlines in summary
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-wes committed Jun 3, 2024
1 parent 06f9773 commit 6a37087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/compile-and-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ jobs:
for dek_file in $dek_files; do
filename=$(basename "$dek_file")
echo -e "#### Contents of \`$filename\`:\n\`\`\`" | tee -a $GITHUB_STEP_SUMMARY
unzip -l "$dek_file" | awk 'NR>3 {print $4}' | tee -a $GITHUB_STEP_SUMMARY
unzip -l "$dek_file" | awk 'NR>3 {print $4}' | sed '/^$/d' | tee -a $GITHUB_STEP_SUMMARY
echo '```' | tee -a $GITHUB_STEP_SUMMARY
done
done
Expand Down

0 comments on commit 6a37087

Please sign in to comment.