From fe5eb12a2fad7bf1534d7ee6bae728ac4ba5718a Mon Sep 17 00:00:00 2001 From: Santiago Carmuega Date: Sat, 10 Feb 2024 11:53:15 -0300 Subject: [PATCH] add git identity --- .github/actions/go-release/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/go-release/action.yml b/.github/actions/go-release/action.yml index b652aa7..735afda 100644 --- a/.github/actions/go-release/action.yml +++ b/.github/actions/go-release/action.yml @@ -39,6 +39,8 @@ runs: rm -Rf go-sdk/spec mv codegen/go go-sdk/spec cd go-sdk + git config --local user.email "codegen@utxorpc.org" + git config --local user.name "UTxO RPC Codegen" git commit -a -m "chore: update spec codegen" - name: Push changes