From c713a248cd70a464e6e45fab8367bca1cdf1ff81 Mon Sep 17 00:00:00 2001 From: ivvist Date: Sun, 24 Mar 2024 16:49:21 +0100 Subject: [PATCH] update voedger dependance in bp3 --- scripts/update-bp3-voedger.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/scripts/update-bp3-voedger.sh b/scripts/update-bp3-voedger.sh index 8c7a855..b88612f 100644 --- a/scripts/update-bp3-voedger.sh +++ b/scripts/update-bp3-voedger.sh @@ -3,7 +3,14 @@ go env -w GOSUMDB=off echo "gh_event: $gh_event" if [[ "$gh_event" == "push" ]]; then - echo "go get github.com/voegder/voedger" + go get github.com/voegder/voedger" echo "go mod tidy" go mod tidy + + git config --local user.email $commit_email + git config --local user.name $commit_user + echo "commit and push new backine schemas" + git add . + git commit -m "voedger: $message" + git push fi