Skip to content

Commit

Permalink
Tagged v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CWSpear committed Jun 4, 2016
1 parent 136147a commit d969aef
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM alpine:latest

ENV VERSION 1.1.0
ENV VERSION v1.2.0
ENV ARCH amd64

ADD https://github.com/CWSpear/local-persist/releases/download/v${VERSION}/local-persist-linux-${ARCH} /usr/bin/docker-volume-local-persist
ADD https://github.com/CWSpear/local-persist/releases/download/${VERSION}/local-persist-linux-${ARCH} /usr/bin/docker-volume-local-persist
RUN chmod +x /usr/bin/docker-volume-local-persist

ADD https://github.com/Yelp/dumb-init/releases/download/v1.0.3/dumb-init_1.0.3_amd64 /usr/bin/dumb-init
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ binary:
go build -o bin/$(BIN_NAME) -v

# build all the binaries
binaries: clean-bin binary-linux-amd64
binaries: clean-bin binary-linux-amd64 # binary-linux-386 binary-linux-arm binary-freebsd-amd64 binary-freebsd-386

clean-bin:
rm -Rf bin
Expand All @@ -44,7 +44,7 @@ binary-linux-amd64:
# binary-linux-arm:
# go build -o bin/$(GOOS)/$(GOARCH)/$(BIN_NAME) -v

# unwilling to support other architectures for now
# cowardly unwilling to support other architectures for now
# binary-freebsd-amd64: export GOOS=freebsd
# binary-freebsd-amd64: export GOARCH=amd64
# binary-freebsd-amd64:
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

VERSION="v1.1.0"
VERSION="v1.2.0"

# uname -s, uname -m
# Deb 32: Linux i686
Expand Down
1 change: 1 addition & 0 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ if [[ $PRERELEASE == "" ]]; then
fi

sed -i '' "s|VERSION=\".*\"|VERSION=\"${RELEASE_TAG}\"|" scripts/install.sh
sed -i '' "s|ENV VERSION .*|ENV VERSION ${RELEASE_TAG}|" Dockerfile

git commit -am "Tagged ${RELEASE_TAG}"
git push
Expand Down

0 comments on commit d969aef

Please sign in to comment.