You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/04/20 12:01:39 UTC

[airflow] branch master updated: Fixes publishing instructions to include docker-stack (#15452)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 9299f13  Fixes publishing instructions to include docker-stack (#15452)
9299f13 is described below

commit 9299f13b0f60fe641d17f1dc19fda17d1ef45c8b
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Tue Apr 20 14:01:22 2021 +0200

    Fixes publishing instructions to include docker-stack (#15452)
---
 dev/README_RELEASE_AIRFLOW.md | 4 ++--
 docs/publish_docs.py          | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev/README_RELEASE_AIRFLOW.md b/dev/README_RELEASE_AIRFLOW.md
index 4f0a96e..39b4429 100644
--- a/dev/README_RELEASE_AIRFLOW.md
+++ b/dev/README_RELEASE_AIRFLOW.md
@@ -705,7 +705,7 @@ Documentation for providers can be found in the ``/docs/apache-airflow`` directo
 
     ```shell script
     cd "${AIRFLOW_REPO_ROOT}"
-    ./breeze build-docs -- --package-filter apache-airflow --for-production
+    ./breeze build-docs -- --package-filter apache-airflow --package-filter docker-stack --for-production
     ```
 
 - Now you can preview the documentation.
@@ -717,7 +717,7 @@ Documentation for providers can be found in the ``/docs/apache-airflow`` directo
 - Copy the documentation to the ``airflow-site`` repository, create commit and push changes.
 
     ```shell script
-    ./docs/publish_docs.py --package apache-airflow
+    ./docs/publish_docs.py --package-filter apache-airflow --package-filter docker-stack
     cd "${AIRFLOW_SITE_DIRECTORY}"
     git commit -m "Add documentation for Apache Airflow ${VERSION}"
     git push
diff --git a/docs/publish_docs.py b/docs/publish_docs.py
index d19d327..92476c3 100755
--- a/docs/publish_docs.py
+++ b/docs/publish_docs.py
@@ -52,7 +52,7 @@ ALL_PROVIDER_YAMLS = load_package_data()
 def get_available_packages():
     """Get list of all available packages to build."""
     provider_package_names = [provider['package-name'] for provider in ALL_PROVIDER_YAMLS]
-    return ["apache-airflow", *provider_package_names, "apache-airflow-providers"]
+    return ["apache-airflow", "docker-stack", *provider_package_names, "apache-airflow-providers"]
 
 
 def _get_parser():