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 951eb1b commit 4ccef40Copy full SHA for 4ccef40
.github/deploy-gh-pages.sh
@@ -18,6 +18,16 @@ sitemap() {
18
echo "Sitemap: $WEBSITE/sitemap.txt" > 'robots.txt'
19
}
20
21
+git config user.name
22
+git config user.email
23
+git config --global user.name
24
+git config --global user.email
25
+
26
+if ! git config user.email; then
27
+ git config user.name 'github-actions'
28
+ git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
29
+fi
30
31
head=$(git rev-parse HEAD)
32
33
git clone -b gh-pages "https://kernc:$GH_PASSWORD@github.com/$GITHUB_REPOSITORY.git" gh-pages
0 commit comments