Added git author information as environment variables

This commit is contained in:
Harrison Deng 2025-01-20 17:04:45 +00:00
parent 05e132c066
commit cb3aec554e

4
Jenkinsfile vendored
View File

@ -20,6 +20,10 @@ pipeline {
}
}
stage("build") {
environment {
GIT_AUTHOR_NAME = "Harrison Deng"
GIT_AUTHOR_EMAIL = "yunyangdeng@outlook.com"
}
steps {
sh "python -m build"
sh "grayskull pypi dist/*.tar.gz"