Skip to content

Commit

Permalink
Debug reading of artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
camposandro authored Nov 30, 2023
1 parent 64fcb77 commit 7ecbd00
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/publish-comments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7ecbd00

Please sign in to comment.