It completes successfully, and saves build artifacts to /dist. Yet the following step, pages:deploy, fails, and is retried five more times, each time failing again.
From what I can tell, there are no logs for pages:deploy, which is marked as external.
I expect this to pass, but it fails.
I’ve looked through the Troubleshooting CI/CD and can’t find anything relevant to this issue.
This is on the private repo lilielbe_WebDevel, if that helps anyone. It’s just a static website which uses the Haskell build tool Shake to create a directory of HTML pages.
now it passes “pages” and fails “pages:deploy”
The content is larger now, I just added about 50 “.md” files, describing some tables in a DB.
are there a size limitation? if so, how can I see and adjust those?
I did not change the “.gitlab-ci.yml” file, it is:
mkdocs doesn’t build into the public by default, it uses site. You either need to add mv site public in your final pages job, or you need to run mkdocs with mkdocs -d public.
I think that the mkdocs.yml specify the site location
Also, it did work fine till yesterday.
Did you mean to replace: - mkdocs build --strict --verbose
with - mkdocs build --strict --verbose -d public in the .gitlab-ci.yml pages section ? tried it, It does not appear to solve the issue