Skip to content

Commit 9649d17

Browse files
authored
Merge pull request #8 from leozqin/ci-fix
fix: set identity before tag
2 parents 7835d5a + ef6a1c6 commit 9649d17

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/push.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
TAG=v$(date -Iseconds | sed 's/[T:\+]/-/g')
4040
echo "$TAG"
4141
echo "tag=$TAG" >> $GITHUB_OUTPUT
42+
git config user.name "GitHub Action"
43+
git config user.email "[email protected]"
4244
git tag -a $TAG -m "Published version $TAG" ${GITHUB_SHA}
4345
git push origin $TAG
4446
- name: Release

0 commit comments

Comments
 (0)