Skip to content

Commit

Permalink
build/push the docker image when cutting a new release
Browse files Browse the repository at this point in the history
  • Loading branch information
thraxil committed Sep 17, 2017
1 parent 25cbba7 commit 8759b28
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ release: samlare
echo $$version > VERSION; \
git commit -a -m "release version $$version"; \
git tag -a v$$version -m "release $$version"; \
git push --tags origin master
git push --tags origin master; \
docker build -t thraxil/samlare:$$version; \
docker push thraxil/samlare:$$version

.PHONY: release

0 comments on commit 8759b28

Please sign in to comment.