From 54677a9f9f2eca003e7cef713c4ffc1cfd3cd814 Mon Sep 17 00:00:00 2001 From: slawek Date: Thu, 12 Dec 2024 09:03:26 +0100 Subject: [PATCH] chore: add setting git config in release --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1461c5c..518de8c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,6 +16,14 @@ jobs: env: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + - name: Initialize Git user + run: | + git config --global user.email "dev@contentpass.de" + git config --global user.name "Release Workflow" + + - name: Log git status + run: git status + - name: Run release run: npm run release --ci env: