From e1a203533da0846650bf7d7179ce71581e9f1988 Mon Sep 17 00:00:00 2001 From: 0xpantera <0xpantera@proton.me> Date: Wed, 4 Feb 2026 11:05:02 +0100 Subject: [PATCH] ci: ensure tool installers add PATH before running --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b06a24f..27f60ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: - name: Install Foundry run: | curl -L https://foundry.paradigm.xyz | bash - source ~/.bashrc + export PATH="$HOME/.foundry/bin:$PATH" foundryup echo "$HOME/.foundry/bin" >> $GITHUB_PATH @@ -57,7 +57,7 @@ jobs: - name: Install nargo run: | curl -L https://raw.githubusercontent.com/noir-lang/noirup/main/install | bash - source ~/.bashrc + export PATH="$HOME/.nargo/bin:$PATH" noirup echo "$HOME/.nargo/bin" >> $GITHUB_PATH @@ -65,7 +65,7 @@ jobs: - name: Install bb run: | curl -L https://raw.githubusercontent.com/AztecProtocol/aztec-packages/refs/heads/master/barretenberg/bbup/install | bash - source ~/.bashrc + export PATH="$HOME/.bb/bin:$PATH" bbup echo "$HOME/.bb/bin" >> $GITHUB_PATH