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 7d651ec commit 423a20cCopy full SHA for 423a20c
.ci/make.sh
@@ -18,6 +18,8 @@ OUTPUT_DIR="$repo/${TARGET_DIR}"
18
RUBY_TEST_VERSION=${RUBY_TEST_VERSION-2.7}
19
GITHUB_TOKEN=${GITHUB_TOKEN-}
20
RUBYGEMS_API=${RUBYGEMS_API-}
21
+GIT_NAME=${GIT_NAME-elastic}
22
+GIT_EMAIL=${GIT_EMAIL-'[email protected]'}
23
24
case $CMD in
25
bump)
@@ -53,4 +55,6 @@ docker run \
53
55
--volume "${OUTPUT_DIR}:/${TARGET_DIR}" \
54
56
--rm \
57
elastic/elasticsearch-ruby \
58
+ git config --global user.email ${GIT_EMAIL} && \
59
+ git config --global user.name ${GIT_NAME} && \
60
bundle exec rake unified_release:"$TASK"
0 commit comments