Skip to content

Commit

Permalink
Updated docs on creating releases
Browse files Browse the repository at this point in the history
  • Loading branch information
applejag committed Apr 8, 2024
1 parent 1735ed4 commit b352d58
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,17 +161,17 @@ podman push ghcr.io/riskident/jelease:latest

## Releasing

1. Create a new release on GitHub, with "v" prefix on version: <https://github.com/RiskIdent/jelease/releases/new>
Create and push a Git tag (prefixed with "v").
Our [GitHub Action workflow with goreleaser](https://github.com/RiskIdent/jelease/actions/workflows/release.yml)
will build and create the release.

2. Write a small changelog, like so:

```markdown
## Changes (since v0.3.0)

- Added some feature. (#123)
```
```bash
git checkout main
git pull

3. Our GitHub Action with goreleaser will build and add artifacts to release
git tag v0.4.1 -m "v0.4.1"
git push --tags
```

## Logo

Expand Down

0 comments on commit b352d58

Please sign in to comment.