From c72da51e89f72b4731821523e47dd8a2efbbcbb9 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 6 May 2024 11:17:11 -0500 Subject: [PATCH] i guess we do need to use this bizarre git user --- .github/workflows/version-and-release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/version-and-release.yml b/.github/workflows/version-and-release.yml index 14f0ac6..51c8404 100644 --- a/.github/workflows/version-and-release.yml +++ b/.github/workflows/version-and-release.yml @@ -26,6 +26,9 @@ jobs: NEW_VERSION=${{ github.event.inputs.new-version }} sed -i "s/^version\s*=.*/version = \"$NEW_VERSION\"/" pyproject.toml cat pyproject.toml + # uhh https://github.com/marketplace/actions/checkout#Push-a-commit-using-the-built-in-token + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git add . git commit -m "updated pyproject.toml version" git push