Skip to content

Commit 265c1f5

Browse files
author
Ben Grynhaus
committed
Attempt to fix CircleCI GitHub pages auto-deploy
1 parent 8d1e8f7 commit 265c1f5

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.circleci/config.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,19 @@ jobs:
7575
- deploy:
7676
command: |
7777
if [ "${CIRCLE_BRANCH}" == "master" ]; then
78-
git add -A && git commit -m 'Deploy to GitHub pages [ci]' && git push
78+
git config user.name "CircleCI"
79+
git config user.email "[email protected]"
80+
git add -A
81+
git commit -m 'Deploy to GitHub pages [ci]'
82+
git push
7983
fi
8084
workflows:
8185
version: 2
86+
87+
build:
88+
jobs:
89+
- build
90+
8291
build_and_publish-docs:
8392
jobs:
8493
- build

0 commit comments

Comments
 (0)