File tree 1 file changed +13
-0
lines changed
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -43,14 +43,27 @@ commands:
43
43
name : Login to the npm registry using '.npmrc' file
44
44
command : echo "//registry.npmjs.org/:_authToken=\${CKE5_NPM_TOKEN}" > ~/.npmrc
45
45
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
+
46
56
git_credentials_command :
47
57
description : " Setup git configuration"
48
58
steps :
59
+ - gpg_credentials_command
49
60
- run :
50
61
name : Setup git configuration
51
62
command : |
52
63
git config --global user.email "[email protected] "
53
64
git config --global user.name "CKEditorBot"
65
+ git config --global user.signingkey 3F615B600F38B27B
66
+ git config --global commit.gpgsign true
54
67
55
68
prepare_environment_variables_commands :
56
69
description : " Prepare non-secret environment variables"
You can’t perform that action at this time.
0 commit comments