Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: adds brew instructions to release checklist #987

Merged
merged 1 commit into from
Aug 17, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion release_checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,16 @@ Once the changelog PR has been merged, pull the updated code, tag it with the ne
```
git pull
git tag v1.5.0
git push
git push --tags
```

This will kick off the GitHub workflow to run goreleaser to perform the release.

### Brew PR

Run the commands below to update Brew to the latest Terrascan version.

```
$ export TERRASCAN_VERSION=<release_version_number>
$ brew bump-formula-pr --no-browse --url https://github.com/accurics/terrascan/archive/${TERRASCAN_VERSION}.tar.gz --sha256 $(curl -sL https://github.com/accurics/terrascan/archive/${TERRASCAN_VERSION}.tar.gz | sha256sum | awk '{print $1}')
```