-
Notifications
You must be signed in to change notification settings - Fork 335
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
fix: https://cert-manager.io/v1.12-docs doesn't work #1252
fix: https://cert-manager.io/v1.12-docs doesn't work #1252
Conversation
The preview build failure looks legitimate! |
✅ Deploy Preview for cert-manager-website ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
I forgot to change the manifest.json when releasing v1.12. The command is: sed -i.bak 's|/docs/|/v1.12-docs/|g' content/v1.12-docs/manifest.json I also edited the release process document to reflect that in another PR. Signed-off-by: Maël Valais <[email protected]>
I updated the release process to mention this. Command I ran is: jq 'del(.. | select(.path? | select(.) | test(".*(installation/supported-releases.md|installation/upgrading|release-notes).*")))' \ content/v1.12-docs/manifest.json >tmp && mv tmp content/v1.12-docs/manifest.json Signed-off-by: Maël Valais <[email protected]>
24ecb38
to
f2e7ee9
Compare
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.
Thanks for fixing this! Couple of things that might need a second look.
Relates to #1243 |
Command used: cat content/v1.12-docs/manifest.json \ | jq 'del(.. | select(.path? | select(.) | test(".*(installation/supported-releases.md|installation/upgrading|release-notes).*")))' \ | jq 'del(.. | select(.routes? == []))' >/tmp/manifest \ && mv /tmp/manifest content/v1.12-docs/manifest.json Signed-off-by: Maël Valais <[email protected]>
c496aa4
to
932e47b
Compare
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.
/lgtm
/approve
This looks good, thanks!
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: maelvls, SgtCoDFish The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
I forgot to change the manifest.json when releasing v1.12. The command is:
I also edited the release process document to reflect that in #1229.