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