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