From 742b50f81f1cb6b9550f8b95899c0a3ac8568a06 Mon Sep 17 00:00:00 2001 From: Sven Weidauer Date: Thu, 31 Dec 2020 00:09:39 +0100 Subject: [PATCH] Set git user name/email --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1b542f2..36deebd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ name: Create new formula version jobs: upload-release: - name: Upload Release Asset + name: Create new formula version runs-on: ubuntu-latest steps: - name: Checkout formula repo @@ -32,6 +32,9 @@ jobs: end EOF + git config user.name github-actions + git config user.email github-actions@github.com + git add Formula/make-colors.rb git commit -m "Update formula for ${{ github.event.release.tag_name }}" git push