From e27bdf712b0082bc385a1e2f6a1c5d36a756777e Mon Sep 17 00:00:00 2001 From: miwr Date: Tue, 8 Apr 2025 13:08:08 +0200 Subject: [PATCH] user_email=$(git config user.email) echo "Git User Email: $user_email" --- .forgejo/workflows/deploy.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index 44f9cd1..4b981b1 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -44,6 +44,10 @@ jobs: git pull ${fullrepo} npm install @angular/cli npm run lint + user_name=$(git config user.name) + echo "Git User Name: $user_name" + user_email=$(git config user.email) + echo "Git User Email: $user_email" - name: Update version run: | chmod +x update-version.sh