potiuk commented on code in PR #37172:
URL: https://github.com/apache/airflow/pull/37172#discussion_r1478392441


##########
dev/breeze/src/airflow_breeze/commands/release_management_commands.py:
##########
@@ -1307,10 +1315,24 @@ def publish_docs(
             override_versioned=override_versioned,
         )
     else:
+        success_entries = []
+        skipped_entries = []
         for package_name in current_packages:
-            run_docs_publishing(
+            return_code, message = run_docs_publishing(
                 package_name, airflow_site_directory, override_versioned, 
verbose=get_verbose(), output=None
             )
+            if return_code == 0:
+                success_entries.append(message)
+            else:
+                skipped_entries.append(message)
+        if include_success_outputs:
+            get_console().print("[success]Packages those were published:")

Review Comment:
   ```suggestion
               get_console().print("[success]Packages published:")
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to