Skip to content

Commit

Permalink
adds brew instructions to release checklist (tenable#987)
Browse files Browse the repository at this point in the history
  • Loading branch information
cesar-rodriguez authored Aug 17, 2021
1 parent e9017b1 commit 5077005
Showing 1 changed file with 10 additions and 1 deletion.
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}')
```

0 comments on commit 5077005

Please sign in to comment.