Skip to content

Commit

Permalink
Add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
itskingori committed Jan 6, 2025
1 parent f49b1f3 commit 9ee9484
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,21 @@ docker run --name celery-exporter zappi/celery-exporter:latest
```

For more detailed usage documentation [see upstream](https://github.com/danihodovic/celery-exporter).

## Releasing

To cut a new release, follow these steps:

1. Ensure your local `main` branch is up to date:
```bash
git checkout main
git fetch origin main
```
2. Create a signed tag for the new release replacing <x.y.z> with the version you’re releasing:
```bash
git tag -s <x.y.z> -m "Version <x.y.z>"
```
3. Push the newly created tag to the remote repository:
```bash
git push origin <x.y.z>
```

0 comments on commit 9ee9484

Please sign in to comment.