Skip to content

Commit

Permalink
Add git config to make.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
picandocodigo committed Nov 4, 2020
1 parent 7d651ec commit 423a20c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .ci/make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ OUTPUT_DIR="$repo/${TARGET_DIR}"
RUBY_TEST_VERSION=${RUBY_TEST_VERSION-2.7}
GITHUB_TOKEN=${GITHUB_TOKEN-}
RUBYGEMS_API=${RUBYGEMS_API-}
GIT_NAME=${GIT_NAME-elastic}
GIT_EMAIL=${GIT_EMAIL-'[email protected]'}

case $CMD in
bump)
Expand Down Expand Up @@ -53,4 +55,6 @@ docker run \
--volume "${OUTPUT_DIR}:/${TARGET_DIR}" \
--rm \
elastic/elasticsearch-ruby \
git config --global user.email ${GIT_EMAIL} && \
git config --global user.name ${GIT_NAME} && \
bundle exec rake unified_release:"$TASK"

0 comments on commit 423a20c

Please sign in to comment.