Skip to content

Commit

Permalink
Update release playbook for kpt (#3928)
Browse files Browse the repository at this point in the history
  • Loading branch information
mortent committed Apr 25, 2023
1 parent 8e101e6 commit 50cc2e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions release/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ To cut a new kpt release perform the following:
- `git fetch upstream`
- `git reset --hard upstream/master`
- Tag the commit
- `git tag 1.0.0-(alpha|beta|rc).*`
- `git push upstream 1.0.0-(alpha|beta|rc).*`
- `git tag v1.0.0-(alpha|beta|rc).*`
- `git push upstream v1.0.0-(alpha|beta|rc).*`
- This will trigger a Github Action that will use goreleaser to make the
release. The result will be a github release in the draft state and upload
docker images to GCR.
- Verify that the release looks good. If it does, publish the release through
the github UI.
- Update the Homebrew release
- `go run ./release/formula/main.go v0.MINOR.0`
- `git add . && git commit -m "update homebrew to v0.MINOR.0"`
- `go run ./release/formula/main.go <tag>` (example: `go run ./release/formula/main.go v1.0.0-beta.31`)
- `git add . && git commit -m "update homebrew to <tag>"`
- create a PR for this change and merge it
- [example PR](https://github.com/GoogleContainerTools/kpt/pull/331/commits/baf33d8ed214f2c5e106ec6e963ad736e5ff4d98#diff-d69e3adb302ee3e84814136422cbf872)

Expand Down

0 comments on commit 50cc2e9

Please sign in to comment.