Skip to content

Commit 42d3986

Browse files
authored
Merge pull request #30 from vondravl/fix/create-tag-git-identity
Fix create_tag workflow missing git identity
2 parents 652c624 + e51f603 commit 42d3986

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/create_tag.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,10 @@ jobs:
2222
with:
2323
python-version: "3.14"
2424

25+
- name: Configure git identity
26+
run: |
27+
git config user.name "github-actions[bot]"
28+
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
29+
2530
- name: Create release tag
2631
run: python scripts/create_tag.py

0 commit comments

Comments
 (0)