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 846f0bf commit c082ddcCopy full SHA for c082ddc
.circleci/config.yml
@@ -155,13 +155,27 @@ jobs:
155
156
- add_ssh_keys
157
158
+ - run:
159
+ name: Setup the bot's Git credentials
160
+ command: >
161
+ git config user.email "bot@circleci.com" &&
162
+ git config user.name "CircleCI"
163
+
164
- run:
165
name: Create a temporary branch
166
command: git checkout -b foo
167
168
169
name: Commit the build directory
- command: git add out && git commit -m 'Deploy the site'
170
171
+ git add out &&
172
+ git commit -m 'Deploy the site'
173
174
175
+ name: Commit the build directory
176
177
178
179
180
181
name: Deploy the static site
0 commit comments