Skip to content
This repository has been archived by the owner on Sep 2, 2021. It is now read-only.

Commit

Permalink
Revising make/build process
Browse files Browse the repository at this point in the history
  • Loading branch information
emcniece committed Mar 3, 2017
1 parent 0606aef commit 30f91b7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ MAINTAINER <[email protected]>

RUN apk add --no-cache ca-certificates

ENV RANCHER_GEN_RELEASE v0.4.1
ENV RANCHER_GEN_RELEASE v0.4.2

ADD https://github.com/janeczku/go-rancher-gen/releases/download/${RANCHER_GEN_RELEASE}/rancher-gen-linux-amd64.tar.gz /tmp/rancher-gen.tar.gz
RUN tar -zxvf /tmp/rancher-gen.tar.gz -C /usr/local/bin \
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ vet:
test:
godep go test -v ./...

release:
rm -f build/rancher-gen-linux-amd64.tar.gz
package: clean build
tar -zcvf build/rancher-gen-linux-amd64.tar.gz build/rancher-gen-linux-amd64

release:
git tag `cat VERSION`
git push origin master --tags

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.4.1
v0.4.2

0 comments on commit 30f91b7

Please sign in to comment.