Add git committer identity

This commit is contained in:
Reza Behzadan 2024-03-31 14:06:00 +03:30
parent 8337911490
commit a23a062a83

2
Jenkinsfile vendored
View File

@ -20,6 +20,8 @@ pipeline {
stage('Release') {
steps {
sh 'git config --global user.email "rbehzadan@gmail.com"'
sh 'git config --global user.name "Reza Behzadan"'
sh 'git tag -a v$(cat VERSION) -m "v$(cat VERSION)"'
sh 'goreleaser release'
}