We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5417597 commit 758b163Copy full SHA for 758b163
1 file changed
.github/workflows/local-network.yaml
@@ -18,7 +18,6 @@ jobs:
18
env:
19
AZTEC_ENV: local-network
20
AZTEC_VERSION: 4.0.0-devnet.2-patch.1
21
- FOUNDRY_DIR: "$HOME/.foundry"
22
23
steps:
24
- name: Checkout repository
@@ -30,11 +29,10 @@ jobs:
30
29
node-version: "22"
31
cache: "yarn"
32
33
- # - name: Install Foundry
34
- # uses: foundry-rs/foundry-toolchain@v1
35
-
36
- name: Install Aztec CLI
37
run: |
+ echo "FOUNDRY_DIR=$HOME/.foundry" >> $GITHUB_ENV
+ export FOUNDRY_DIR="$HOME/.foundry"
38
INSTALL_URL="https://install.aztec.network/${{ env.AZTEC_VERSION }}/"
39
curl -sL $INSTALL_URL > tmp.sh
40
VERSION=${{ env.AZTEC_VERSION }} bash tmp.sh <<< yes "yes"
0 commit comments