Auto-updating the terraform registry documentation for a provider

Hi, I am looking into creating a terraform provider using a plugin which auto-generates the schema during runtime from an openAPI spec exposed by my API server, which means that I expect to only have single version of my terraform provider. To automate even further, I plan to use the terraform-plugin-docs tool to auto-generate the documentation for the terraform registry.

As I understand it, the documentation is tied to a release on Github, so my question is - is there a way, automated (ideally) or otherwise, to update the documentation for a specific release so that it shows up on the terraform registry docs without requiring a new release? If it could be automated, it would mean that I can use my API’s deployment pipeline to auto-update the documentation, which would be perfect.

Thanks!