Versions Compared

Key

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

...

  • Ensure your local 'develop' branch is up-to-date
    Make sure that the path that the source is checked out to does not contain spaces.
  • Create a new remote 'release' branch
    Code Block
    git push -u origin develop:releaseX.Y.Z
    
  • Create a new directory, change to it and check out the develop branch.
    Code Block
    
    git clone https://git-wip-us.apache.org/repos/asf/flex-sdk.git
    
  • Checkout the new release branch with:
    Code Block
    git checkout releaseX.Y.Z
    
  • Build the source and binary packages.
    Code Block
    cd build
    ./build_release.sh
    
    The packages can be found in the out subdirectory.

...