From 3dffbe293042a71ef36b256027ae80cc6fb0b861 Mon Sep 17 00:00:00 2001 From: Simon Ho Date: Mon, 10 Jun 2024 02:21:06 -0700 Subject: [PATCH] ci: set git config --- .github/workflows/publish.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 76ca801..ed54f3a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,6 +16,10 @@ jobs: uses: actions/checkout@v4 with: token: ${{ secrets.PUSH_PAT }} + - name: Set git config + run: | + git config user.name "${{ github.actor }}" + git config user.email "${{ github.actor }}@users.noreply.github.com" - name: Install Node.js uses: actions/setup-node@v4 with: