We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b13de6d commit 2c89c9eCopy full SHA for 2c89c9e
.github/workflows/daily.yml
@@ -22,10 +22,16 @@ jobs:
22
with:
23
path: cairo_native
24
25
+ - name: Restore blocks list
26
+ uses: actions/cache/restore@v4.2.0
27
+ with:
28
+ path: ./blocks.txt
29
+ key: blocks-list
30
+
31
- name: Parse blocks file
32
id: parse-blocks
33
run: |
- content=`cat ./cairo_native/.github/replay-blocks.txt`
34
+ content=`cat ./blocks.txt`
35
echo "blocks_list=$(jq 'split(",")' -Rc <(echo $content))" >> $GITHUB_OUTPUT
36
37
.github/workflows/vm-replay.yml
@@ -34,7 +34,6 @@ jobs:
path: ./blocks.txt
key: blocks-list
-
38
run:
39
needs: setup
40
runs-on: ubuntu-latest
0 commit comments