Skip to content

Commit c082ddc

Browse files
committed
ci: add bunk credentials for deploy bot
1 parent 846f0bf commit c082ddc

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.circleci/config.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,13 +155,27 @@ jobs:
155155

156156
- add_ssh_keys
157157

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+
158164
- run:
159165
name: Create a temporary branch
160166
command: git checkout -b foo
161167

162168
- run:
163169
name: Commit the build directory
164-
command: git add out && git commit -m 'Deploy the site'
170+
command: >
171+
git add out &&
172+
git commit -m 'Deploy the site'
173+
174+
- run:
175+
name: Commit the build directory
176+
command: >
177+
git add out &&
178+
git commit -m 'Deploy the site'
165179
166180
- run:
167181
name: Deploy the static site

0 commit comments

Comments
 (0)