Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add code section for copying release files, fix svn commit section, remove leading spaces

...

  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


  2. Make a directory for the new release:

    Code Block
    languagebash
     mkdir flink/flink-${RELEASE_VERSION}
     cd flink/flink-${RELEASE_VERSION}
    Copy Flink source/binary distributions, hashes, and GPG signature:
    Code Block
    mv <flink-dir>/tools/releasing/release/* flink/flink-${RELEASE_VERSION}


  3. Add and commit all the files.

    Code Block
    languagebash
    cd flink 
    svn add flink/flink-${RELEASE_VERSION}
     svn commit


  4. Verify that files are present

...