Skip to content

Commit

Permalink
ci: Fix escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
dtcxzyw committed Jun 30, 2024
1 parent e562e7e commit 13fbf50
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/dag-grep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ jobs:
- name: Get Pattern IR
run: |
echo "${{ github.event.issue.body }}" | sed -n '/^```/,/^```/ p' | sed '/^```/ d' > ${{ github.workspace }}/test.ll
echo "${TEXT}" | sed -n '/^```/,/^```/ p' | sed '/^```/ d' > ${{ github.workspace }}/test.ll
cat ${{ github.workspace }}/test.ll
env:
TEXT: ${{ github.event.issue.body }}

- name: Run LLVM DAG Grep
run: ${{ github.workspace }}/scripts/run_dag_grep.sh
Expand Down

0 comments on commit 13fbf50

Please sign in to comment.