From 991fd189029b0fd24b67f4ac113dbb7117f00ab9 Mon Sep 17 00:00:00 2001 From: filipstrand Date: Sat, 14 Jun 2025 11:27:17 +0200 Subject: [PATCH] Update release action with Git configuration --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 89a1a51..d0da234 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,6 +33,11 @@ jobs: python -m pip install --upgrade pip python -m pip install requests build twine toml + - name: Configure Git + run: | + git config --global user.name "GitHub Actions" + git config --global user.email "actions@github.com" + - name: Run release script env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}