Moved log from.

This commit is contained in:
Alexander Artemenko 2021-02-07 01:51:24 +03:00
parent 30eab4479d
commit 1771c92bbf

View file

@ -153,13 +153,14 @@ behaviour could be overriden by keyword argument ``:raise t``."
(let ((*current-dir* (probe-file #P""))) (let ((*current-dir* (probe-file #P"")))
(cond (cond
((git-repository-was-changed-p) ((git-repository-was-changed-p)
(log:info "Pushing local changes to the repository")
(git "add -u") (git "add -u")
(when (uiop:getenv "GITHUB_ACTIONS") (when (uiop:getenv "GITHUB_ACTIONS")
(log:info "Pushing changes to gh-pages branch")
(git "config --global user.name \"github-actions[bot]\"") (git "config --global user.name \"github-actions[bot]\"")
(git "config --global user.email \"actions@github.com\"")) (git "config --global user.email \"actions@github.com\""))
(git "commit -m 'Update docs'") (git "commit -m 'Update docs'")
(cond (cond