From 8343295c2ddc4291d3e1871fa36e15a12833963b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20G=C3=BCtschow?= Date: Thu, 23 Apr 2026 15:22:26 +0200 Subject: [PATCH] * Fixed github calls and config in release.yaml --- .github/workflows/release.yaml | 3 +++ changelog/8.fix.md | 1 + 2 files changed, 4 insertions(+) create mode 100644 changelog/8.fix.md diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index af4d85a..89eb05e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -48,7 +48,10 @@ jobs: - name: generate changelog run: | uv run towncrier build --version=steps.package-version.outputs.version --yes + git config --global user.name "$GITHUB_ACTOR" + git config --global user.email "$CI_COMMIT_EMAIL" git commit -a -m "create changelog for version ${{ steps.package-version.outputs.version }}" + git push # Create Release if they differ - name: Create Draft GitHub Release diff --git a/changelog/8.fix.md b/changelog/8.fix.md new file mode 100644 index 0000000..b606982 --- /dev/null +++ b/changelog/8.fix.md @@ -0,0 +1 @@ +* Fixed github calls and config in release.yaml