Skip to content

Commit

Permalink
Clean up summary script
Browse files Browse the repository at this point in the history
  • Loading branch information
VOID404 committed Jul 30, 2024
1 parent 3c46bc7 commit e2569d1
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/acm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,14 @@ jobs:
name: test.log
- name: "Generate summary"
run: |
echo '# ACM Build' >> $GITHUB_STEP_SUMMARY
echo '## Test Log'
echo '```'
cat test.log >> $GITHUB_STEP_SUMMARY
echo '```'
echo '## Images' >> $GITHUB_STEP_SUMMARY
echo '```json' >> $GITHUB_STEP_SUMMARY
echo '${{ needs.build-image.outputs.images }}' | jq >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
{
echo '# ACM Build'
echo '## Test Log'
echo '```'
cat test.log
echo '```'
echo '## Images'
echo '```json'
echo '${{ needs.build-image.outputs.images }}' | jq
echo '```'
} >> $GITHUB_STEP_SUMMARY

0 comments on commit e2569d1

Please sign in to comment.