Skip to content

Commit

Permalink
ci: fix path to neard-sandbox (#954)
Browse files Browse the repository at this point in the history
## Description

The PR fixes a path to the `neard-sandbox` in the schedule CI script.
  • Loading branch information
aleksuss authored Sep 5, 2024
1 parent 2abae62 commit 9cb8359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build-neard-sandbox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TAG=`curl -s https://rpc.${NETWORK}.near.org/status | jq -r .version.build`
git clone https://github.com/near/nearcore -b $TAG
cd nearcore
make sandbox
mv $(find target -name neard-sandbox) ../
cd ..
mv ${PWD}/nearcore/target/release/neard-sandbox .
rm -rf nearcore
echo "NEAR_SANDBOX_BIN_PATH=${PWD}/neard-sandbox" >> $GITHUB_ENV

0 comments on commit 9cb8359

Please sign in to comment.