Skip to content

Commit

Permalink
sed bugfix for backslash in sp1 ref
Browse files Browse the repository at this point in the history
  • Loading branch information
yourbuddyconner committed Sep 24, 2024
1 parent 72b0378 commit dbdc26b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run-on-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
run: |
for file in ${{ github.workspace }}/benchmarks/*.csv; do
sed -i '1s/^/instance_type,sp1_ref,/' "$file"
sed -i "2,\$s/^/${{ inputs.instance_type }},${{ inputs.sp1_ref }},/" "$file"
sed -i "2,\$s|^|${{ inputs.instance_type }},${{ inputs.sp1_ref }},|" "$file"
done
- name: Upload benchmark results
Expand Down

0 comments on commit dbdc26b

Please sign in to comment.