Update release action with Git configuration

This commit is contained in:
filipstrand 2025-06-14 11:27:17 +02:00
parent ea4aca5850
commit 991fd18902

View File

@ -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 }}