Skip to content

Commit

Permalink
release 2.1.3+1
Browse files Browse the repository at this point in the history
  • Loading branch information
technosophos committed Jan 30, 2017
1 parent 7032710 commit ee1813f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ install: bootstrap build
build:
go build -o tpl ./main.go

.PHONY: dist
dist:
GOOS=linux GOARCH=amd64 go build -o tpl ./main.go
tar -zcvf helm-template-linux.tgz tpl README.md LICENSE.txt plugin.yaml
GOOS=darwin GOARCH=amd64 go build -o tpl ./main.go
tar -zcvf helm-template-macos.tgz tpl README.md LICENSE.txt plugin.yaml


.PHONY: bootstrap
bootstrap:
Expand Down
4 changes: 3 additions & 1 deletion plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: "template"
version: "0.1.0"
# Version is the version of Helm plus the number of official builds for this
# plugin
version: "2.1.3+1"
usage: "render templates on the local client"
description: "Render templates on the local client."
command: "$HELM_PLUGIN_DIR/tpl"

0 comments on commit ee1813f

Please sign in to comment.