DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
tag your release
git tag ${VERSION}Clean the checkout: the sdist step below will
git clean -fxd# tarball the repogit archive --format=tar.gz ${VERSION} --prefix=apache-airflow-${VERSION}/ -o apache-airflow-${VERSION}-source.tar.gz- 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.python setup.py compile_assets sdist - Rename the sdist
mv dist/apache-airflow-${VERSION%rc?VERSION}.tar.gz apache-airflow-${VERSION}-bin.tar.gz Generate SHA512/ASC
</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 --tags
...