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 f13267485d0 Fixed two typos in release verification for providers by
PMC members (#58794)
f13267485d0 is described below
commit f13267485d0e6206cb24ef52834fa4761f221980
Author: Jarek Potiuk <[email protected]>
AuthorDate: Fri Nov 28 00:20:37 2025 +0100
Fixed two typos in release verification for providers by PMC members
(#58794)
---
dev/README_RELEASE_PROVIDERS.md | 4 ++--
.../airflow_breeze/commands/release_management_commands.py | 12 ++++++------
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/dev/README_RELEASE_PROVIDERS.md b/dev/README_RELEASE_PROVIDERS.md
index f330e9023f6..a45d01f60ea 100644
--- a/dev/README_RELEASE_PROVIDERS.md
+++ b/dev/README_RELEASE_PROVIDERS.md
@@ -661,10 +661,10 @@ Set expected release tag (the same as announced in the
vote email):
export RELEASE_DATE=2025-11-03
````
-Go to the directory where you have airflow checked out and set
AIRFLOW_ROOT_PATH variable
+Go to the directory where you have airflow checked out and set
AIRFLOW_REPO_ROOT variable
```shell
-export AIRFLOW_ROOT_PATH=$(pwd -P)
+export AIRFLOW_REPO_ROOT=$(pwd -P)
```
### SVN check
diff --git
a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
index a186b619525..cd0c37db8b8 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
@@ -4332,7 +4332,7 @@ def version_check(
@option_verbose
@option_dry_run
def check_release_files(
- path: Path,
+ path_to_airflow_svn: Path,
version: str | None,
release_date: str | None,
packages_file: Path,
@@ -4371,7 +4371,7 @@ def check_release_files(
if not release_date:
console.print("[error]--release-date is required for providers[/]")
sys.exit(1)
- directory = path / "providers" / release_date
+ directory = path_to_airflow_svn / "providers" / release_date
else:
if not version:
console.print(f"[error]--version is required for
{release_type}[/]")
@@ -4379,13 +4379,13 @@ def check_release_files(
# Determine directory based on release type
if release_type == "airflow":
- directory = path / version
+ directory = path_to_airflow_svn / version
elif release_type == "task-sdk":
- directory = path / version
+ directory = path_to_airflow_svn / version
elif release_type == "airflow-ctl":
- directory = path / "airflow-ctl" / version
+ directory = path_to_airflow_svn / "airflow-ctl" / version
elif release_type == "python-client":
- directory = path / "clients" / "python" / version
+ directory = path_to_airflow_svn / "clients" / "python" / version
else:
console.print(f"[error]Unknown release type: {release_type}[/]")
sys.exit(1)