Skip to content

Commit 5ea330b

Browse files
committed
ci: do full checkout and set commit author info
1 parent ac07fab commit 5ea330b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ jobs:
105105

106106
steps:
107107
- uses: actions/checkout@v4
108+
with:
109+
fetch-depth: 0
108110

109111
- name: Install Python
110112
uses: actions/setup-python@v5
@@ -117,6 +119,9 @@ jobs:
117119
- name: Run semantic-release
118120
env:
119121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
120-
run:
122+
run: |
123+
git config --global user.email "[email protected]"
124+
git config --global user.name "semantic-release"
121125
poetry run semantic-release -v version --no-changelog
122126
poetry run semantic-release publish
127+

0 commit comments

Comments
 (0)