We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c2db08 commit 9966155Copy full SHA for 9966155
.github/workflows/review.yml
@@ -101,7 +101,9 @@ jobs:
101
id: report
102
run: |
103
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"
+ report=~/.cache/nixpkgs-review/pr-${{ inputs.pr }}/report.md
105
+ cat $report
106
+ echo report_${{ matrix.system }}=$($base64 -w0 $report) >> "$GITHUB_OUTPUT"
107
108
report:
109
runs-on: ubuntu-latest
0 commit comments