Skip to content

Commit

Permalink
Add documentation on release
Browse files Browse the repository at this point in the history
  • Loading branch information
tlbdk committed Sep 8, 2022
1 parent 5ea7294 commit e967f26
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ builds:
goarch:
- amd64
- arm64
goos:
- darwin
- linux
env:
- CGO_ENABLED=0
archives:
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,11 @@ Current the go ssh key implementation does not support the new OpenSSH format so
ssh-keygen -f build.key
ssh-keygen -f build.key -m 'PEM' -e > build.pem
```

## Release new version

``` bash
export GITHUB_TOKEN="YOUR_GH_TOKEN"
git tag -a v2.0.2 -m "Release 2.0.2"
git push origin v2.0.2
```

0 comments on commit e967f26

Please sign in to comment.