Hi everyone.
I am writing documentation for the package I am developing. After some point the changes I am making aren’t loaded to github pages stable version altough they are reflected in the /dev/ link.
I can see the changes in the following link (/dev):
https://ilkerarslan.github.io/NovaML.jl/dev/user_guide/model_training/
but not in the following one:
https://ilkerarslan.github.io/NovaML.jl/stable/user_guide/model_training/
Can anyone tell how should I fix this?
lmiq
September 6, 2024, 9:14am
2
You probably need to create a new tag and release: Publish Docs · JuliaNotes.jl
1 Like
The stable
version is always reflecting your last registered version, which in your case seems to be the 0.3
you published a few days ago?
the dev
version is the status of the docs from the last commit on your master branch reflected.
1 Like
lmiq
September 6, 2024, 10:50am
4
You don’t need necessarily to register a new version to update the docs, you need to tag and release a new version with the same version.
That worked. Many thanks.
1 Like