Skip to content

Commit 758b163

Browse files
committed
Refactor local-network workflow to set FOUNDRY_DIR in the environment variables section
1 parent 5417597 commit 758b163

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/local-network.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
env:
1919
AZTEC_ENV: local-network
2020
AZTEC_VERSION: 4.0.0-devnet.2-patch.1
21-
FOUNDRY_DIR: "$HOME/.foundry"
2221

2322
steps:
2423
- name: Checkout repository
@@ -30,11 +29,10 @@ jobs:
3029
node-version: "22"
3130
cache: "yarn"
3231

33-
# - name: Install Foundry
34-
# uses: foundry-rs/foundry-toolchain@v1
35-
3632
- name: Install Aztec CLI
3733
run: |
34+
echo "FOUNDRY_DIR=$HOME/.foundry" >> $GITHUB_ENV
35+
export FOUNDRY_DIR="$HOME/.foundry"
3836
INSTALL_URL="https://install.aztec.network/${{ env.AZTEC_VERSION }}/"
3937
curl -sL $INSTALL_URL > tmp.sh
4038
VERSION=${{ env.AZTEC_VERSION }} bash tmp.sh <<< yes "yes"

0 commit comments

Comments
 (0)