Skip to content

Commit 042947f

Browse files
committed
fix: handle spaces in git config values
1 parent 72cbfdb commit 042947f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ runs:
8181
| head -n 1 \
8282
| cut -d':' -f5 \
8383
)
84-
git config --global user.name ${{ inputs.git-username }}
85-
git config --global user.email ${{ inputs.git-email }}
84+
git config --global user.name "${{ inputs.git-username }}"
85+
git config --global user.email "${{ inputs.git-email }}"
8686
git config --global user.signingkey $CI_SIGNINGKEY_ID
8787
git config --global commit.gpgsign true
8888
git config --global tag.gpgsign true

0 commit comments

Comments
 (0)