We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39a7f50 commit 5e1faeeCopy full SHA for 5e1faee
.github/workflows/release-package.yml
@@ -70,9 +70,8 @@ jobs:
70
env:
71
GITHUB_TOKEN: ${{ secrets.GIT_ACTION }}
72
run: |
73
- git config --local user.email "[email protected]"
74
- git config --local user.name "Sanqi"
75
- git commit -a -m "Feat: update changelog"
+ git config --local user.email "${GITHUB_ACTOR}@users.noreply.github.com"
+ git config --local user.name "${GITHUB_ACTOR}"
76
git push origin main
77
git tag v${{ steps.package-version.outputs.version }}
78
git push origin v${{ steps.package-version.outputs.version }}
0 commit comments