Versions Compared

Key

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

...

Code Block
languagetext
$ svn checkout https://dist.apache.org/repos/dist/dev/flink/flink-statefun-${RELEASE_VERSION}-rc${RC_NUM}
$ cd flink-statefun-${RELEASE_VERSION}-rc${RC_NUM}
$ twine upload --repository-url https://upload.pypi.org/legacy/ \
    apache-flink-statefun-${RELEASE_VERSION}.tar.gz apache-flink-${RELEASE_VERSION}.tar.gz.asc \
    apache_flink_statefun-${RELEASE_VERSION}-py3-none-any.whl apache_flink_statefun-${RELEASE_VERSION}-py3-none-any.whl.asc

Deploy JavaScript SDK to npm

The release manager should ask the PMC for the login credentials to the npmflink account on npm. With these credentials it is possible to publish the JavaScript SDK by using npm.

Code Block
languagebash
titleNpm publish
npm login
cd flink-statefun/statefun-sdk-js
npm publish


Deploy artifacts to Maven Central Repository

...