Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 872 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (17 loc) · 872 Bytes

Contributing

How to release

  1. Create a pull request named chore: release x.y.z with the following changes:

    Example PR: #92

  2. Create and push the release tag:

    git checkout main
    git pull
    export VERSION=x.y.z
    git tag -a "${VERSION}" -m "Release ${VERSION}"
    git push origin "${VERSION}"

    This will trigger the GitHub Actions publish action to pubilsh the gem in Ruby Gems.

  3. Go to https://github.com/SumoLogic/fluentd-output-sumologic/releases and create a new release for the tag. Copy the changes from Changelog and publish the release.