This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new cdb11dd0fb Revising instructions to run back referencing scripts
(#32613)
cdb11dd0fb is described below
commit cdb11dd0fb7c1bc2a457d30913ee2cd9dc16f804
Author: Amogh Desai <[email protected]>
AuthorDate: Sat Jul 15 14:24:11 2023 +0530
Revising instructions to run back referencing scripts (#32613)
---
dev/README_RELEASE_AIRFLOW.md | 5 +----
dev/README_RELEASE_HELM_CHART.md | 3 +--
dev/README_RELEASE_PROVIDER_PACKAGES.md | 3 +--
3 files changed, 3 insertions(+), 8 deletions(-)
diff --git a/dev/README_RELEASE_AIRFLOW.md b/dev/README_RELEASE_AIRFLOW.md
index b24c2feff1..08ec16a68b 100644
--- a/dev/README_RELEASE_AIRFLOW.md
+++ b/dev/README_RELEASE_AIRFLOW.md
@@ -805,10 +805,7 @@ Documentation for providers can be found in the
``/docs/apache-airflow`` directo
```shell script
breeze release-management publish-docs --package-filter apache-airflow
--package-filter docker-stack
- cd "${AIRFLOW_SITE_DIRECTORY}"
- cd post-docs
- python add-back-references.py airflow
- cd ..
+ breeze release-management add-back-references --airflow-site-directory
--gen-type airflow
git add .
git commit -m "Add documentation for Apache Airflow ${VERSION}"
git push
diff --git a/dev/README_RELEASE_HELM_CHART.md b/dev/README_RELEASE_HELM_CHART.md
index cf664c3d84..087c56b3f8 100644
--- a/dev/README_RELEASE_HELM_CHART.md
+++ b/dev/README_RELEASE_HELM_CHART.md
@@ -634,8 +634,7 @@ between the two repositories to be able to build the
documentation.
```shell
cd "${AIRFLOW_SITE_DIRECTORY}"
- cd post-docs
- python add-back-references.py helm
+ breeze release-management add-back-references --airflow-site-directory
--gen-type helm
cd ..
curl
https://dist.apache.org/repos/dist/dev/airflow/helm-chart/$RC/index.yaml -o
index.yaml
cp ${AIRFLOW_SVN_RELEASE_HELM}/${VERSION}/airflow-${VERSION}.tgz .
diff --git a/dev/README_RELEASE_PROVIDER_PACKAGES.md
b/dev/README_RELEASE_PROVIDER_PACKAGES.md
index 65bf935586..323a83a966 100644
--- a/dev/README_RELEASE_PROVIDER_PACKAGES.md
+++ b/dev/README_RELEASE_PROVIDER_PACKAGES.md
@@ -393,8 +393,7 @@ breeze release-management publish-docs \
--override-versioned
cd "${AIRFLOW_SITE_DIRECTORY}"
-cd post-docs
-python add-back-references.py providers
+breeze release-management add-back-references --airflow-site-directory
--gen-type providers
cd ..
```