Skip to content

Commit

Permalink
Prep release of v1.0.6 (#113)
Browse files Browse the repository at this point in the history
prep v1.0.6

Updates release instructions with more details.
  • Loading branch information
robbkidd authored Jun 9, 2022
1 parent 717f2f0 commit b3b0b86
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# gha-buildevents changelog

## v1.0.6 [2022-06-08]

### Maintenance

- Adoption by Honeycomb (#109 & #111) | [@robbkidd](https://github.com/robbkidd)
- Update integration failure check to fail in an expected way (#110) | [@robbkidd](https://github.com/robbkidd)
- Bump dependencies [f9bfe4eb0](https://github.com/honeycombio/gha-buildevents/commit/f9bfe4eb0a4be2a660c40491bd4e6861413e87ca) | [@kvrhdn](https://github.com/kvrhdn)

## v1.0.5 [2021-02-27]

### Enhancements
Expand Down
23 changes: 17 additions & 6 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,24 @@

Follow these steps to create a new release:

- create a new release from [the Releases page](https://github.com/honeycombio/gha-buildevents/releases)
- assign it a tag with the new version
- make sure to also publish the release to the GitHub Marketplace
- update the major version tag so it points to the latest release
- Create a release-prep branch:
- Update version in package.json
- Update CHANGELOG for this version
- Commit, push branch, open PR, get a review of release prep changes, and merge
- Once the pull request is merged, fetch the updated main branch.
- Apply a tag for the new version on the merged commit on main: vX.Y.Z, for example v1.1.2: `git tag -a v1.1.2 -m "v1.1.2"`
- Push the new version tag: `git push origin v1.1.2`
- Create a new release from [the Releases page](https://github.com/honeycombio/gha-buildevents/releases)
- check the "Publish this release to the GitHub Marketplace" box
- choose the version tag created above
- release title matches version number
- copy and paste the changelog entry for this version into the release description
- Update the major version tag so it points to the latest release
- with the latest release checked out locally:

```shell
# with the latest release checked out locally
git tag -fa v1 -m "Update v1 tag"
git push origin v1 --force
```
- all tags can be seen on [the Tags page](https://github.com/honeycombio/gha-buildevents/tags), including the commit they reference

- Review the tags on [the Tags page](https://github.com/honeycombio/gha-buildevents/tags), including the commit they reference
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gha-buildevents",
"version": "1.0.0",
"version": "1.0.6",
"description": "GitHub Actions to integrate Honeycomb's buidlevents tool into your workflows",
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit b3b0b86

Please sign in to comment.