This repository was archived by the owner on Jul 10, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
.github/actions/setup-aztec Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,12 +39,21 @@ runs:
3939 echo "version=$VER" >> "$GITHUB_OUTPUT"
4040 echo "Aztec version: $VER"
4141
42+ - name : Install Foundry
43+ shell : bash
44+ run : |
45+ curl -L https://foundry.paradigm.xyz | bash
46+ export PATH="$HOME/.foundry/bin:$PATH"
47+ foundryup
48+ echo "$HOME/.foundry/bin" >> $GITHUB_PATH
49+
4250 - name : Install Aztec CLI
4351 shell : bash
4452 run : |
4553 INSTALL_URL="https://install.aztec.network/${{ steps.aztec-version.outputs.version }}/"
4654 echo "Installing from: $INSTALL_URL"
4755 curl -sL $INSTALL_URL > tmp.sh
56+ export PATH="$HOME/.foundry/bin:$PATH"
4857 VERSION=${{ steps.aztec-version.outputs.version }} bash tmp.sh <<< yes "yes"
4958
5059 - name : Switch CLI to target version
You can’t perform that action at this time.
0 commit comments