Skip to content

Commit

Permalink
fix: anvil path:
Browse files Browse the repository at this point in the history
  • Loading branch information
kx9x committed Jan 15, 2024
1 parent 0cbad32 commit 4b670c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/roboanimals-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,11 @@ jobs:
$FOUNDRY_BIN_DIR/foundryup
- name: Add Anvil to Path
run: echo "$HOME/.foundry/bin" >> $GITHUB_PATH
run: |
BASE_DIR=${XDG_CONFIG_HOME:-$HOME}
FOUNDRY_DIR=${FOUNDRY_DIR-"$BASE_DIR/.foundry"}
FOUNDRY_BIN_DIR="$FOUNDRY_DIR/bin"
echo $FOUNDRY_BIN_DIR >> $GITHUB_PATH
- name: Set up python 3.10
uses: actions/setup-python@main
Expand Down

0 comments on commit 4b670c6

Please sign in to comment.