DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
export VERSION=1.10.0rc1- set your version to 1.10.0 in
airflow/version.py(without the RC tag) - Commit the version change.
tag Tag your release
Code Block language bash theme RDark git tag ${VERSION}
Clean the checkout: the sdist step below will
Code Block language bash theme RDark git clean -fxd
- # tarball
Tarball the repoCode Block language bash theme RDark git archive --format=tar.gz ${VERSION} --prefix=apache-airflow-${VERSION}/ -o apache-airflow-${VERSION}-source.tar.gz
- generate
Generate sdist
NOTE: Make sure your checkout is clean at this stage - any untracked or changed files will otherwise be included in the file produced.
py compileCode Block language bash theme RDark python setup.
py compile_assets sdist
Rename the sdist
Code Block language bash theme RDark mv dist/apache-airflow-${VERSION%rc?}.tar.gz apache-airflow-${VERSION}-bin.tar.gz
Generate SHA512/ASC (If you have not generated a key yet, generate it by following instructions on http://www.apache.org/dev/openpgp.html#key-gen-generate-key)
</path to airflow source>/dev/sign.sh apache-airflow-${VERSION}-source.tar.gz && </path to airflow source>/dev/sign.sh apache-airflow-${VERSION}-bin.tar.gzgit push --tagsPush the artefacts to ASF dev dist repo
Code Block language bash theme RDark # First clone the repo svn checkout https://dist.apache.org/repos/dist/dev/airflow airflow-dev # Create new folder for the release cd airflow-dev svn mkdir ${VERSION} # Move the artefacts to svn folder & commit mv AIRFLOW_REPO_ROOT/apache-airflow-${VERSION}* airflow-dev/${VERSION}/ svn add * svn commit -m "Add artefacts for Airflow ${VERSION}"
...