From cb3aec554e4470f69ebc24100af37c6301777585 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Mon, 20 Jan 2025 17:04:45 +0000 Subject: [PATCH] Added git author information as environment variables --- Jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 42912c1..6348ba1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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"