Versions Compared

Key

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

...

The preparation of a release candidate for incubator-streampipes-installer is a manual process:

Remove git related files

Remove all files and folders that start with ".git"


Modify versions

Use the update version script to change version to release version:

...

Code Block
languagebash
titleModify StreamPipes version
git tag release/VERSION

#e.g., git tag release/0.66.0

# push tags
git push origin --tags

Remove git related files

Ensure to remove all files and folders that start with ".git" before creating the zip file.

Create Zip file

The next step is to create a zip file for the source release:

...