Skip to content

Commit

Permalink
Merge pull request #292 from 0chain/fix/zwalletcli-build-issue
Browse files Browse the repository at this point in the history
added go mod tidy to fix zwalletcli build issue into action.yml
  • Loading branch information
boddumanohar authored Nov 15, 2023
2 parents 7452445 + 76982f6 commit 7b9e67b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deploy-0chain/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -626,11 +626,13 @@ runs:
echo
echo "Building zwalletcli [${{ env.ZWALLET_BRANCH }}]..."
cd zwalletcli
go mod tidy
make install > build.log 2>&1 || { cat build.log && echo "::error title=zwallet CLI build failed::zwallet CLI build failed" && exit 1; }
mv zwallet ..
echo "Building zboxcli [${{ env.ZBOX_BRANCH }}]..."
cd ../zboxcli
go mod tidy
make install > build.log 2>&1 || { cat build.log && echo "::error title=zbox CLI build failed::zbox CLI build failed" && exit 1; }
mv zbox ..
echo "CLI build SUCCESS!"
Expand Down

0 comments on commit 7b9e67b

Please sign in to comment.