Skip to content

Commit

Permalink
pipe: fix docker build during release - dont run tests (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
isindir authored Jul 25, 2020
1 parent b1644de commit f6d41aa
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,18 @@ docker-build: test
docker build . -t ${IMG}
docker tag ${IMG} ${IMG_LATEST}

## docker-build-dont-test: Build the docker image without running tests
docker-build-dont-test: generate fmt vet manifests
docker build . -t ${IMG}
docker tag ${IMG} ${IMG_LATEST}

## docker-push: Push the docker image
docker-push:
docker push ${IMG}
docker push ${IMG_LATEST}

## release: creates github release and pushes docker image to dockerhub
release: docker-build
release: docker-build-dont-test
@{ \
set +e ; \
git tag "${VERSION}" ; \
Expand Down

0 comments on commit f6d41aa

Please sign in to comment.