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 66c801ca294 Simplify release provider procedure (#61446)
66c801ca294 is described below
commit 66c801ca2943aa652721cbfaa50ca90c903c26fe
Author: Jarek Potiuk <[email protected]>
AuthorDate: Wed Feb 4 14:56:24 2026 +0100
Simplify release provider procedure (#61446)
---
dev/README_RELEASE_PROVIDERS.md | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/dev/README_RELEASE_PROVIDERS.md b/dev/README_RELEASE_PROVIDERS.md
index 547cfba7b5a..b94e4320b3d 100644
--- a/dev/README_RELEASE_PROVIDERS.md
+++ b/dev/README_RELEASE_PROVIDERS.md
@@ -1174,11 +1174,8 @@ ls ${SOURCE_DIR}/*<provider>*
# Remove them
svn rm ${SOURCE_DIR}/*<provider>*
-# Create providers folder if it does not exist
-# All latest releases are kept in this one folder without version sub-folder
-cd "${ASF_DIST_PARENT}/asf-dist/release/airflow"
-mkdir -pv providers
-cd providers
+# All latest releases are kept in this providers folder without version
sub-folder
+cd "${ASF_DIST_PARENT}/asf-dist/release/airflow/providers"
# Copy your providers with the target name to dist directory and to SVN
rm -rf "${AIRFLOW_REPO_ROOT}"/dist/*
@@ -1203,7 +1200,8 @@ svn commit -m "Release Airflow Providers on $(date
"+%Y-%m-%d%n"): release prepa
```
Verify that the packages appear in
-[providers](https://dist.apache.org/repos/dist/release/airflow/providers)
+[providers](https://dist.apache.org/repos/dist/release/airflow/providers) and
the (always first)
+`apache_airflow_providers-RELEASE_DATE-source.tar.gz` file should have the
right RELEASE_DATE.
You are expected to see all latest versions of providers.
The ones you are about to release (with new version) and the ones that are not
part of the current release.