Skip to content

Commit

Permalink
add howto release and fix up travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nickg committed Jun 22, 2017
1 parent 47bfa78 commit d264f24
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ git:
script:
- ./scripts/travis.sh
after_success:
- test -n "$TRAVIS_TAG" && ./scripts/goreleaser.sh
- ./scripts/goreleaser.sh
30 changes: 30 additions & 0 deletions RELEASE-HOWTO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Release HOWTO

since I forget.

Most if not all of this should be semi-automated.

1. Review existing tags and pick new release number


TODO: from changelog get last version and make sure it's not
tagged already.

```bash
git tag
```

2. Add to CHANGELOG.md

2. Tag locally

```bash
git tag -a vLASTVERSION -m "First release"
```

3. Push

```bash
git push origin LASTVERSION
```

0 comments on commit d264f24

Please sign in to comment.