From f8264c4f11303028136c0a011f9d50a65f8f6548 Mon Sep 17 00:00:00 2001 From: Ben Clark Date: Thu, 3 Oct 2019 14:39:06 +0100 Subject: [PATCH] Configure the github user --- .github/workflows/zip-release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/zip-release.yml b/.github/workflows/zip-release.yml index 72b5653..b9e9f76 100644 --- a/.github/workflows/zip-release.yml +++ b/.github/workflows/zip-release.yml @@ -30,6 +30,8 @@ jobs: overwrite: true - name: copy to gh-pages branch run: | + git config user.email "none@example.com" + git config user.name "Github Actions" git checkout gh-pages mv out/index.html . git add index.html