Skip to content

Commit

Permalink
fix release docs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzej-stencel committed Feb 14, 2024
1 parent 30aae18 commit 97bcdfa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@
- Set `gem.version` to `"x.y.z"` in [fluent-plugin-sumologic_output.gemspec](fluent-plugin-sumologic_output.gemspec).
- Add new version to [CHANGELOG.md](./CHANGELOG.md).

Example PR: [#92](https://github.com/SumoLogic/fluentd-output-sumologic/pull/92)

2. Create and push the release tag:

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

This will trigger the GitHub Actions [publish](./.github/workflows/publish.yaml) action to pubilsh the gem in Ruby Gems.
Expand Down

0 comments on commit 97bcdfa

Please sign in to comment.