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 4a400f243c Fix few clarifications in provider release process (#36267)
4a400f243c is described below

commit 4a400f243c5a74360d8ee477200518dac056d05d
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Sun Dec 17 19:32:55 2023 +0100

    Fix few clarifications in provider release process (#36267)
    
    There are few steps missing in the provider release process if
    you followed it meticulously - the working directory was not
    changed to the AIRFLOW_ROOT and main should be checked out
    right before we should create branch to update providers metadata.
    
    This PR fixes it.
---
 dev/README_RELEASE_PROVIDER_PACKAGES.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev/README_RELEASE_PROVIDER_PACKAGES.md 
b/dev/README_RELEASE_PROVIDER_PACKAGES.md
index 0a437285cf..f0b03ea41a 100644
--- a/dev/README_RELEASE_PROVIDER_PACKAGES.md
+++ b/dev/README_RELEASE_PROVIDER_PACKAGES.md
@@ -1103,15 +1103,16 @@ and lead to annoying errors. The default behaviour 
would be to clean such local
 If you want to disable this behaviour, set the env **CLEAN_LOCAL_TAGS** to 
false.
 
 ```shell script
+cd ${AIRFLOW_REPO_ROOT}
 ./dev/provider_packages/tag_providers.sh
 ```
 
 ## Update providers metadata
 
-Make sure you create the following branch from the git tag (steps before) and 
not from main!
-
 ```shell script
 cd ${AIRFLOW_REPO_ROOT}
+git checkout main
+git pull
 branch="update-providers-metadata-$(date '+%Y-%m-%d%n')"
 git checkout -b "${branch}"
 breeze release-management generate-providers-metadata

Reply via email to