From 71c4e453005e8fc07b432187e68d43b93bf92436 Mon Sep 17 00:00:00 2001 From: Oleksandr Anyshchenko Date: Thu, 5 Sep 2024 10:59:49 +0100 Subject: [PATCH] ci: fix path to neard-sandbox --- scripts/build-neard-sandbox.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-neard-sandbox.sh b/scripts/build-neard-sandbox.sh index 3abed0148..3db7bf215 100755 --- a/scripts/build-neard-sandbox.sh +++ b/scripts/build-neard-sandbox.sh @@ -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