This is an automated email from the ASF dual-hosted git repository.
amoghdesai 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 363ae9be1cf Correcting AIRFLOW_ROOT_PATH to fix CI (#48077)
363ae9be1cf is described below
commit 363ae9be1cf8104f6958cd577e8bcd2ae5050775
Author: Amogh Desai <[email protected]>
AuthorDate: Sat Mar 22 17:54:20 2025 +0530
Correcting AIRFLOW_ROOT_PATH to fix CI (#48077)
---
dev/breeze/src/airflow_breeze/commands/release_candidate_command.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
b/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
index f4dace9612d..bff7616e215 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_candidate_command.py
@@ -405,7 +405,7 @@ def publish_release_candidate(version, previous_version,
github_token):
# # Tag & clean the repo
git_tag(version)
git_clean()
- source_date_epoch = get_source_date_epoch(AIRFLOW_ROOT_PATH / "airflow")
+ source_date_epoch = get_source_date_epoch(AIRFLOW_ROOT_PATH)
shutil.rmtree(AIRFLOW_DIST_PATH, ignore_errors=True)
# Create the artifacts
if confirm_action("Use docker to create artifacts?"):