Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. If you have not already, check out the Flink section of the dev repository on dist.apache.org via Subversion. In a fresh directory:

    Code Block
    languagebash
    svn checkout https://dist.apache.org/repos/dist/dev/flink --depth=immediates
    
    # make a directory for the new release
    mkdir flink/flink-shaded-${RELEASE_VERSION}-rc${RC_NUM} 
    
    # copy Flink source distributions, hashes, and GPG signature
    mv ${FLINK_SHADED_DIR}/tools/release/* flink/flink-shaded-${RELEASE_VERSION}-rc${RC_NUM}
    
    pushd flink
    svn add flink-shaded-${RELEASE_VERSION}-rc${RC_NUM}
    svn commit -m "Add flink-shaded ${RELEASE_VERSION}-rc${RC_NUM}"
    popd


  2. Verify that files are present.

...