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 28b05fd commit 353a6f3Copy full SHA for 353a6f3
entrypoint.sh
@@ -103,14 +103,14 @@ fi
103
104
# push to publishing branch
105
if [[ -n "${INPUT_USERNAME}" ]]; then
106
- git config user.name "${INPUT_USERNAME}"
+ git config --global user.name "${INPUT_USERNAME}"
107
else
108
- git config user.name "${GITHUB_ACTOR}"
+ git config --global user.name "${GITHUB_ACTOR}"
109
fi
110
if [[ -n "${INPUT_USEREMAIL}" ]]; then
111
- git config user.email "${INPUT_USEREMAIL}"
+ git config --global user.email "${INPUT_USEREMAIL}"
112
113
- git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
+ git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
114
115
git remote rm origin || true
116
git remote add origin "${remote_repo}"
0 commit comments