From 9990120a69607ba45d2e1948749d37f3dc496cc8 Mon Sep 17 00:00:00 2001 From: Sean Prashad <13009507+SeanPrashad@users.noreply.github.com> Date: Fri, 29 Jul 2022 16:16:37 -0400 Subject: [PATCH] Add missing git configuration --- .github/workflows/github-pages.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index ea57cea4..6ef16191 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -24,8 +24,9 @@ jobs: - name: Install Packages and Build 🔧 run: | npm ci - npm run build - name: Deploy 🚀 run: | + git config user.email "${{ secrets.GIT_CONFIG_EMAIL }}" + git config user.name "${{ secrets.GIT_CONFIG_NAME }}" npm run deploy