From e2e194cc16984c1b9955c00c71acdf45876db5ae Mon Sep 17 00:00:00 2001 From: ctrlc03 <93448202+ctrlc03@users.noreply.github.com> Date: Tue, 27 Feb 2024 09:59:01 +0000 Subject: [PATCH] fix(ci): fix tag publishing workflow --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3591b575e4..3759d2e7c2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,6 +47,11 @@ jobs: - name: Publish NPM run: | + # Prevent `git commit error` + # It will not be pushed to GitHub as it is ephemeral + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + # Depending on the STATE_TREE_DEPTH param, there # might be changes in the EmptyBallotRoots.sol file git add contracts/contracts/trees/EmptyBallotRoots.sol