Skip to content
This repository has been archived by the owner on Nov 7, 2019. It is now read-only.

Commit

Permalink
Adding Make Target for local builds
Browse files Browse the repository at this point in the history
**Why:**

* Allows you to build the codebase with `goreleaser` and a dirty tree.

```bash
make dev-release
```

**This change addresses the need by:**

* closes #65

Signed-off-by: Christopher Hein <me@christopherhein.com>
  • Loading branch information
christopherhein committed Sep 7, 2018
1 parent 2c8e64c commit a6d3ec6
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,16 @@ build:

.PHONY: release
release:
rm -fr dist
goreleaser
goreleaser --rm-dist

.PHONY: dev-release
dev-release:
goreleaser --rm-dist --snapshot --skip-publish

.PHONY: tag
tag:
git tag -a ${VERSION} -s
git push origin --tags

.PHONY: install-aws-codegen
install-aws-codegen:
Expand Down

0 comments on commit a6d3ec6

Please sign in to comment.