From 725d10e315133ce6e8f36890468096295d5243e5 Mon Sep 17 00:00:00 2001 From: user2589 Date: Sun, 26 Jul 2020 11:46:16 -0400 Subject: [PATCH] ci: fix github pages build --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0f78479..eb21084 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,9 +47,10 @@ jobs: - name: Upload pages git gh-pages branch run: | - git config user.name github-actions - git config user.email github-actions@github.com cd docs/build/html + # since following git config is not --global, cd to repo dir first + git config user.name "github-actions" + git config user.email "github-actions@github.com" git add . git commit -m "github pages" git push \ No newline at end of file