From af4db2d6dede363a0536b10c772b707241a1d9ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CCarson?= Date: Mon, 12 Oct 2020 17:47:33 -0400 Subject: [PATCH] add git config --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4e6e21c..0fdf31b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,8 +25,10 @@ jobs: run: sudo apt install nuget mono-complete make - name: Update version number, and commit run: | + git config --global user.name "Github Actions" + git config --global user.email "dyc3@users.noreply.github.com" sed -ri "s/Version\(\"[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+\"\)/Version\(\"${{ github.event.inputs.version }}\"\)/g" AssemblyInfo.cs - git -c user.name="Github Actions" -c user.email="dyc3@users.noreply.github.com" commit -m "Update version" AssemblyInfo.cs + git commit -m "Update version" AssemblyInfo.cs - name: Build run: | nuget restore SteamAuth/SteamAuth/SteamAuth.sln