Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Fixed the regex to remove rc prefix

...

  • After both votes pass (see above), you need to migrate the RC artifacts that passed to this repository:
    https://dist.apache.org/repos/dist/release/airflow/
    (The migration should including renaming the files so that they no longer have the RC number in their filenames.)

    The best way of doing this is to svn cp  between the two repos (this avoids having to upload the binaries again, and gives a clearer history in the svn commit logs):

    Code Block
    languagebash
    themeMidnight
    # First clone the repo
    export RC=1.10.4rc5
    export VERSION=${RC/rc?/}
    svn checkout https://dist.apache.org/repos/dist/release/airflow airflow-release
    
    # Create new folder for the release
    cd airflow-release
    svn mkdir ${VERSION}
    cd ${VERSION}
    
    # Move the artifacts to svn folder & commit
    for f in ../../airflow-dev/$RC/*; do svn cp $f ${$(basename $f)/rc5rc?/}; done
    svn commit -m "Release Airflow ${VERSION} from ${RC}" 


...