Skip to content

Commit 10a72de

Browse files
committed
fix writing to GITHUB_OUTPUT
1 parent f00e9a2 commit 10a72de

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/benches.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,17 +262,19 @@ jobs:
262262
PR_COMMIT_URL="${{ github.server_url }}/${{ github.repository }}/commit/${PR_HEAD_HASH}"
263263
BASE_COMMIT_URL="${{ github.server_url }}/${{ github.repository }}/commit/${BASE_HASH}"
264264
265-
cat >$GITHUB_OUTPUT <<EOF
265+
cat >"$GITHUB_OUTPUT" <<ACTUALEOF
266+
body<<EOF
266267
*beep boop, I am the benchmark bot*
267268
268269
Comparing PR commit [$PR_HEAD_HASH_SHORT]($PR_COMMIT_URL) against baseline [$BASE_HASH_SHORT]($BASE_COMMIT_URL).
269270
270271
# Benchmark Report
271-
272+
272273
$(cat report-mlkem.md)
273274
274275
$(cat report-mldsa.md)
275276
EOF
277+
ACTUALEOF
276278
277279
- name: Post comment to PR
278280
if: env.IS_FORK == 'true'
@@ -287,4 +289,3 @@ jobs:
287289
issue_number: context.issue.number,
288290
body: process.env.COMMENT_BODY
289291
});
290-

0 commit comments

Comments
 (0)