We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7065a09 commit 5c45b80Copy full SHA for 5c45b80
1 file changed
.github/workflows/ci.yml
@@ -33,10 +33,8 @@ jobs:
33
set -eux
34
# install foundryup installer script
35
curl -L https://foundry.paradigm.xyz | bash -s -- -y
36
- # source bashrc to activate foundryup in PATH
37
- source $HOME/.bashrc
38
- # now run foundryup to install the full Foundry toolchain
39
- foundryup -y
+ # run the foundryup binary directly to avoid non-interactive shell issues
+ "$HOME/.foundry/bin/foundryup" -y
40
# add foundry to GITHUB_PATH for subsequent steps
41
echo "$HOME/.foundry/bin" >> $GITHUB_PATH
42
# verify installation
0 commit comments