github deploy error #5315
-
Hello everyone, My problem occurs when publishing the project on github. I have python 3.11 version installed on my computer. I am creating a yaml file to publish my project, but the process stops automatically during deploy. The problem is fixed by removing the - run: mkdocs gh-deploy --force line at the end of the yaml file, but when I remove this line the project is not published on github Yaml file codes;
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Well, what is the error in your action run log? The CI file looks fine, except for the legacy actions versions. |
Beta Was this translation helpful? Give feedback.
Well, what is the error in your action run log? The CI file looks fine, except for the legacy actions versions.
actions/checkout@v3
,actions/setup-python@v4
,python-version: 3.11
.Also how does your
mkdocs.yml
file look like, maybe you have some additional plugins, which you forgot to install during CI?You can run the
mkdocs gh-deploy --force
command from your local PC too ✌️