-
Notifications
You must be signed in to change notification settings - Fork 16.4k
Fixing breeze add-back-references command with doc #32649
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
Changes from all commits
ad7f02a
1e60a1b
4969bcc
692448e
1e6467b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -392,10 +392,7 @@ breeze release-management publish-docs \ | |
| --package-filter 'apache-airflow-providers-*' \ | ||
| --override-versioned | ||
|
|
||
| cd "${AIRFLOW_SITE_DIRECTORY}" | ||
| breeze release-management add-back-references --airflow-site-directory --gen-type providers | ||
| cd .. | ||
|
|
||
| breeze release-management add-back-references --gen-type providers | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @aminghadersohi I suspect this doesn't work as expected for redirects between providers like was done in #32306 This caused creation of latest folder in the Google provider:
Which caused failure in doc site build https://github.com/apache/airflow-site/actions/runs/5704523295/job/15458213062 When I removed the latest folder build ran successfully
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah NVM this is issue in the path #32945 |
||
| ``` | ||
|
|
||
| If you see `ModuleNotFoundError: No module named 'docs'`, set: | ||
|
|
||

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.
If you remove this cd then please remove also the
cd ..in line 397Uh oh!
There was an error while loading. Please reload this page.
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.
Noted. Will keep in mind while updating the PR
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.
BTW. I think the best thing is to just ... execute the processs... this way is the only way to check if it works @amoghrajesh - and it does not have to be complete. Like pushing the code does not neede to happen, and up to pushing to airflow repo, all steps can be done by you as well.
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 that info, @potiuk
I will try it out now and in the future PRs too!