Skip to content

Commit 7bc2ebd

Browse files
committed
Fix path by cloning native
1 parent 900b4c1 commit 7bc2ebd

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/vm-replay.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,16 @@ jobs:
1515
outputs:
1616
blocks: ${{ steps.parse-blocks.outputs.blocks_list }}
1717
steps:
18+
19+
- name: Checkout Native
20+
uses: actions/checkout@v4
21+
with:
22+
path: cairo_native
23+
1824
- name: Parse blocks file
1925
id: parse-blocks
2026
run: |
21-
content=`cat ../replay-blocks.txt`
27+
content=`cat ./cairo_native/.github/replay-blocks.txt`
2228
echo "::set-output name=blocks_list::$(jq 'split(",")' -Rc <(echo $content))"
2329
2430

0 commit comments

Comments
 (0)