We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4451d0 commit 8656831Copy full SHA for 8656831
.github/workflows/main.yml
@@ -94,8 +94,16 @@ jobs:
94
- name: Fetch genesis block number
95
id: fetch_block
96
run: |
97
- BLOCK_NUMBER=$(cat /local-stack-env/FORK_BLOCK)
+ BLOCK_NUMBER=$(cat /test-stack/FORK_BLOCK)
98
+ FORK_URL=$(cat /test-stack/FORK_URL)
99
echo "BLOCK=$BLOCK_NUMBER" >> $GITHUB_OUTPUT
100
+ echo "URL=$FORK_URL" >> $GITHUB_OUTPUT
101
+
102
+ - name: Start Anvil
103
+ uses: iExecBlockchainComputing/anvil-github-action@main
104
+ with:
105
+ fork-url: ${{ steps.fetch_block.outputs.URL }}
106
+ fork-block-number: ${{ steps.fetch_block.outputs.BLOCK }}
107
108
- name: Start Graph Node
109
0 commit comments