Skip to content

Commit

Permalink
Fix setting git config values
Browse files Browse the repository at this point in the history
  • Loading branch information
CvX committed Mar 1, 2021
1 parent 16771b5 commit ef3b2ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ if git fetch origin "refs/tags/v$gem_version" >/dev/null 2>&1
then
echo "Tag 'v$gem_version' already exists"
else
git config user.email ${GIT_EMAIL:-"[email protected]"}
git config user.name ${GIT_NAME:-"Automated Release"}
git config user.email "${GIT_EMAIL:-automated@example.com}"
git config user.name "${GIT_NAME:-Automated Release}"

echo "Installing dependencies..."
gem update bundler
Expand Down

0 comments on commit ef3b2ff

Please sign in to comment.