Skip to content

Commit 9966155

Browse files
committed
feat: show report in 'generate report' step
1 parent 9c2db08 commit 9966155

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/review.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ jobs:
101101
id: report
102102
run: |
103103
base64=$(nix build --no-link --print-out-paths .#coreutils)/bin/base64
104-
echo report_${{ matrix.system }}=$($base64 -w0 ~/.cache/nixpkgs-review/pr-${{ inputs.pr }}/report.md) >> "$GITHUB_OUTPUT"
104+
report=~/.cache/nixpkgs-review/pr-${{ inputs.pr }}/report.md
105+
cat $report
106+
echo report_${{ matrix.system }}=$($base64 -w0 $report) >> "$GITHUB_OUTPUT"
105107
106108
report:
107109
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)