Skip to content

Commit e42e638

Browse files
authored
Merge pull request #342 from ckeditor/ci/3928
Internal: Introduced signing commits for CKEditorBot.
2 parents 4ede804 + e175219 commit e42e638

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.circleci/config.yml

+13
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,27 @@ commands:
4343
name: Login to the npm registry using '.npmrc' file
4444
command: echo "//registry.npmjs.org/:_authToken=\${CKE5_NPM_TOKEN}" > ~/.npmrc
4545

46+
gpg_credentials_command:
47+
description: "Setup GPG configuration"
48+
steps:
49+
- run:
50+
name: Setup GPG configuration
51+
command: |
52+
#!/bin/bash
53+
54+
echo "$CKE5_GPG_KEY" | base64 --decode | gpg --import --quiet
55+
4656
git_credentials_command:
4757
description: "Setup git configuration"
4858
steps:
59+
- gpg_credentials_command
4960
- run:
5061
name: Setup git configuration
5162
command: |
5263
git config --global user.email "[email protected]"
5364
git config --global user.name "CKEditorBot"
65+
git config --global user.signingkey 3F615B600F38B27B
66+
git config --global commit.gpgsign true
5467
5568
prepare_environment_variables_commands:
5669
description: "Prepare non-secret environment variables"

0 commit comments

Comments
 (0)