We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d1e8f7 commit 265c1f5Copy full SHA for 265c1f5
.circleci/config.yml
@@ -75,10 +75,19 @@ jobs:
75
- deploy:
76
command: |
77
if [ "${CIRCLE_BRANCH}" == "master" ]; then
78
- git add -A && git commit -m 'Deploy to GitHub pages [ci]' && git push
+ git config user.name "CircleCI"
79
+ git config user.email "circleci@users.noreply.github.com"
80
+ git add -A
81
+ git commit -m 'Deploy to GitHub pages [ci]'
82
+ git push
83
fi
84
workflows:
85
version: 2
86
+
87
+ build:
88
+ jobs:
89
+ - build
90
91
build_and_publish-docs:
92
jobs:
93
- build
0 commit comments