Skip to content

Commit

Permalink
Fix string interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
TrueDoctor committed Aug 14, 2024
1 parent e60e946 commit c6440d8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/profile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,11 @@ jobs:
- name: Run PR benchmarks
id: benchmark
run: |
cargo bench --bench compile_demo_art --features=iai -- --baseline main > benchmark_results.txt
echo "BENCHMARK_OUTPUT<<EOF" >> $GITHUB_OUTPUT
cat benchmark_results.txt >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
BENCH_OUTPUT=$(cargo bench --bench compile_demo_art --features=iai -- --baseline main)
echo $BENCH_OUTPUT
ESCAPED_OUTPUT=$(echo "$BENCH_OUTPUT" | jq -sR .)
echo $ESCAPED_OUTPUT
echo "BENCHMARK_OUTPUT=$ESCAPED_OUTPUT" >> $GITHUB_OUTPUT
- name: Comment PR
uses: actions/github-script@v6
Expand Down

0 comments on commit c6440d8

Please sign in to comment.