Skip to content
This repository was archived by the owner on Jul 10, 2026. It is now read-only.

Commit 9a3f128

Browse files
committed
fix: workflow install foundry before aztec
1 parent 56c5636 commit 9a3f128

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/actions/setup-aztec/action.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)