From e265670edbe330228a9e07302437148cdbce8a05 Mon Sep 17 00:00:00 2001 From: David Murphy Date: Wed, 4 Dec 2024 15:02:22 -0700 Subject: [PATCH] Added git user etc before tagging --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bfd7b2a..e0028c3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -191,6 +191,14 @@ jobs: repository: ${{ github.repository }} ## ssh-key: ${{ secrets.SALT_VMTOOLS_RELEASE_KEY }} + - name: Configure Git + shell: bash + run: | + git config --global --add safe.directory "$(pwd)" + git config --global user.name "Salt Project Packaging" + git config --global user.email saltproject.pdl@broadcom.com + git config --global commit.gpgsign false + - name: Download Release Details uses: actions/download-artifact@v4 with: