Skip to content

Commit

Permalink
push to quay (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
solashRan authored and bivas committed Nov 29, 2018
1 parent c791ade commit 5150a36
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*.deb
*.rpm
*.rpm
VERSION
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ DEB_PATH = "iguazio_deb"
BINARY_NAME = "igz-fuse"
RELEASE_VERSION = "0.6.1"
DOCKER_HUB_USER = "iguaziodocker"
QUAY_IO_USER = "quay.io/iguazio"
FULL_VERSION = $(IGUAZIO_VERSION:igz_%=%)-$(RELEASE_VERSION)

.PHONY: build
build: lint vet
Expand All @@ -17,7 +19,9 @@ download:

.PHONY: release
release: check-req download build
docker tag $(DOCKER_HUB_USER)/flex-fuse:unstable $(DOCKER_HUB_USER)/flex-fuse:$(IGUAZIO_VERSION:igz_%=%)-$(RELEASE_VERSION)
docker tag $(DOCKER_HUB_USER)/flex-fuse:unstable $(DOCKER_HUB_USER)/flex-fuse:$(FULL_VERSION)
docker tag $(DOCKER_HUB_USER)/flex-fuse:unstable $(QUAY_IO_USER)/flex-fuse:$(FULL_VERSION)
echo $(FULL_VERSION) > VERSION

check-req:
ifndef MIRROR
Expand Down

0 comments on commit 5150a36

Please sign in to comment.