From 7ecbd00912ae45e4bb85ba5c5366c71ebc26b032 Mon Sep 17 00:00:00 2001 From: Sandro Campos Date: Thu, 30 Nov 2023 00:01:14 -0500 Subject: [PATCH] Debug reading of artifacts --- .github/workflows/publish-comments.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-comments.yml b/.github/workflows/publish-comments.yml index b4241f4..d816bb5 100644 --- a/.github/workflows/publish-comments.yml +++ b/.github/workflows/publish-comments.yml @@ -31,8 +31,12 @@ jobs: - name: Extract artifacts information id: pr-info run: | - echo "pr=$(cat pr)" >> $GITHUB_OUTPUT - echo "output=$(cat output)" >> $GITHUB_OUTPUT + pr_number=$(cat pr) + echo "PR number: $pr_number" + output_content=$(cat output) + echo "Output: $output_content" + echo "pr=$pr_number" >> $GITHUB_OUTPUT + echo "output=$output_content" >> $GITHUB_OUTPUT - name: Find benchmarks comment uses: peter-evans/find-comment@v2 id: find-comment