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 7683ca9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/profile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,9 @@ 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=master)
ESCAPED_OUTPUT=$(echo "$BENCH_OUTPUT" | jq -sR .)
echo "BENCHMARK_OUTPUT=$ESCAPED_OUTPUT" >> $GITHUB_OUTPUT
- name: Comment PR
uses: actions/github-script@v6
Expand Down

0 comments on commit 7683ca9

Please sign in to comment.