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

Commit 0bab48c

Browse files
committed
fix: replace $HOME for /home/runner/
1 parent 18b7692 commit 0bab48c

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,15 @@ runs:
4343
shell: bash
4444
run: |
4545
curl -L https://foundry.paradigm.xyz | bash
46-
export PATH="$HOME/.foundry/bin:$PATH"
47-
$HOME/.foundry/bin/foundryup
48-
echo "$HOME/.foundry/bin" >> $GITHUB_PATH
46+
/home/runner/.foundry/bin/foundryup
47+
echo "/home/runner/.foundry/bin" >> $GITHUB_PATH
4948
5049
- name: Install Aztec CLI
5150
shell: bash
5251
run: |
5352
INSTALL_URL="https://install.aztec.network/${{ steps.aztec-version.outputs.version }}/"
5453
echo "Installing from: $INSTALL_URL"
5554
curl -sL $INSTALL_URL > tmp.sh
56-
export PATH="$HOME/.foundry/bin:$PATH"
5755
VERSION=${{ steps.aztec-version.outputs.version }} bash tmp.sh <<< yes "yes"
5856
5957
- name: Switch CLI to target version

0 commit comments

Comments
 (0)