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

Commit a6d3ec6

Browse files
Adding Make Target for local builds
**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 <[email protected]>
1 parent 2c8e64c commit a6d3ec6

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

Makefile

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,16 @@ build:
77

88
.PHONY: release
99
release:
10-
rm -fr dist
11-
goreleaser
10+
goreleaser --rm-dist
11+
12+
.PHONY: dev-release
13+
dev-release:
14+
goreleaser --rm-dist --snapshot --skip-publish
15+
16+
.PHONY: tag
17+
tag:
18+
git tag -a ${VERSION} -s
19+
git push origin --tags
1220

1321
.PHONY: install-aws-codegen
1422
install-aws-codegen:

0 commit comments

Comments
 (0)