This is an automated email from the ASF dual-hosted git repository.
kaxilnaik 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 acbb09c7e1 Few fixes in the providers release doc (#23382)
acbb09c7e1 is described below
commit acbb09c7e10c1452629ff1ab7641a3fa72237338
Author: Jed Cunningham <[email protected]>
AuthorDate: Sat Apr 30 16:33:15 2022 -0600
Few fixes in the providers release doc (#23382)
---
dev/README_RELEASE_PROVIDER_PACKAGES.md | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/dev/README_RELEASE_PROVIDER_PACKAGES.md
b/dev/README_RELEASE_PROVIDER_PACKAGES.md
index 7669f15345..16d7322773 100644
--- a/dev/README_RELEASE_PROVIDER_PACKAGES.md
+++ b/dev/README_RELEASE_PROVIDER_PACKAGES.md
@@ -646,7 +646,7 @@ Once the vote has been passed, you will need to send a
result vote to dev@airflo
Subject:
```
-[RESULT][VOTE] Airflow Providers - release of DATE OF RELEASE
+[RESULT][VOTE] Airflow Providers - release of DATE OF RELEASE
```
Message:
@@ -682,12 +682,12 @@ We also need to archive older releases before copying the
new ones
[Release
policy](http://www.apache.org/legal/release-policy.html#when-to-archive)
```shell script
-# Go to the directory where you have checked out the dev svn release
-# And go to the sub-folder with RC candidates
cd "<ROOT_OF_YOUR_AIRFLOW_REPO>"
# Set AIRFLOW_REPO_ROOT to the path of your git repo
export AIRFLOW_REPO_ROOT=$(pwd)
+# Go to the directory where you have checked out the dev svn release
+# And go to the sub-folder with RC candidates
cd "<ROOT_OF_YOUR_DEV_REPO>/providers/"
export SOURCE_DIR=$(pwd)
@@ -698,8 +698,10 @@ ls *<provider>*
svn rm *<provider>*
# Go the folder where you have checked out the release repo
-# Clone it if it's not done yet
+cd "<ROOT_OF_YOUR_RELEASE_REPO>"
+# or clone it if it's not done yet
svn checkout https://dist.apache.org/repos/dist/release/airflow airflow-release
+cd airflow-release
# Update to latest version
svn update
@@ -729,7 +731,7 @@ python
${AIRFLOW_REPO_ROOT}/dev/provider_packages/remove_old_releases.py \
# Commit to SVN
-svn commit -m "Release Airflow Providers on $(date)"
+svn commit -m "Release Airflow Providers on $(date "+%Y-%m-%d%n")"
```
Verify that the packages appear in
@@ -795,7 +797,6 @@ set tags for the providers in the repo.
./dev/provider_packages/tag_providers.sh
```
-
## Notify developers of release
- Notify [email protected] (cc'ing [email protected] and
[email protected]) that
@@ -805,7 +806,7 @@ Subject:
```shell script
cat <<EOF
-Airflow Providers released on $(date) are ready
+Airflow Providers released on $(date "+%B %d, %Y") are ready
EOF
```
@@ -823,7 +824,7 @@ The source release, as well as the binary releases, are
available here:
https://airflow.apache.org/docs/apache-airflow-providers/installing-from-sources
-You can install the providers via PyPI
https://airflow.apache.org/docs/apache-airflow-providers/installing-from-pypi
+You can install the providers via PyPI:
https://airflow.apache.org/docs/apache-airflow-providers/installing-from-pypi
The documentation is available at https://airflow.apache.org/docs/ and linked
from the PyPI packages.