An overall the best workflow is to do:
mkdocs serve
while writing documentation localy to see how it looks- before push to the repo do
mkdocs build -c
to see if it will build correctly - push to the repo and let GH Action workflow to deploy a page to GH Pages
THANKS, MAQ!!!