-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Testing fix for Documenter issue #103 #106
Conversation
I suspect that this will not change anything. |
There is also no |
Ah, this one looks wrong. |
Damn. Looks like you're correct.
Exactly my feelings, too. Troubleshooting Actions themselves is very frustrating when the existing version of the Action is the one that gets run. |
I think I found the issue. You seemed to have registered a new version in another commit than the one, where you bumped the version number. Namely here: c5ee557#comments. I think this lead to |
However, I still don't know why it didn't get fixed with the newer versions starting from v0.13.4. |
Weird. So I bumped the package patch version number in one commit but waited until after the next commit was added to trigger registration, and that somehow broke Documenter moving forward? |
Maybe, I am not sure TBH. |
But I do think, it's a problem with |
I checked that in other repos in each commit to the main branch, which bumps the version of the package (and also at the same time triggers JuliaRegistrator) |
Yet another reason I'm a fan of Julia and functional programming: fewer worries about magical background state. 😆 |
I'm taking a swing at fixing #103.
The deployment docs and
deploydocs
docstring aren't very descriptive on this point, but from looking around at other packages thisversions
argument seems like it might be needed.I suspect this won't retroactively include missed versions, though there's a note on this point that suggests a workaround is to
git tag
old commits withv0.xx.x-anything
to re-trigger workflows.