- Notifications
You must be signed in to change notification settings - Fork15
Fix doc deploy#144
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Fix doc deploy#144
Uh oh!
There was an error while loading.Please reload this page.
Conversation
| push: | ||
| branches: | ||
| -"master" | ||
| workflow_dispatch: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
I'm all for addingworkflow_dispatch:, but why are you removing thepush: branches: - "master" lines?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Never mind. I get it. We want the docs to only update when there's a new release. May I suggest the following instead?
on: release: types: [published] workflow_dispatch:That will trigger automatically only when a new release is published. In the context of a GitHub Actions workflow, "published" means that a release has been finalized and made visible to the public, or specifically, marked as a non-draft and non-prerelease version. This is distinct from simply saving a draft.
The docs should be deployed when a new release is publishing. There isno point to deploy the docs every time when the master branch isupdated. The proposed change sets automatic doc deployment only on anew release publication or manually.
vitcpp commentedOct 17, 2025
@esabol Thank you for the idea. I've added doc deployment on release publication. |
esabol commentedOct 17, 2025
Looks good, I hope this will get the GitHub Actions workflow to update the documentation on the website working again. This PR will also close issue#132. |
5457452 intopostgrespro:masterUh oh!
There was an error while loading.Please reload this page.
No description provided.