We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9577fd0 commit 1c438e3Copy full SHA for 1c438e3
Makefile
@@ -1,7 +1,7 @@
1
GIT_TAG?= $(shell git describe --always --tags)
2
BIN = gosec
3
FMT_CMD = $(gofmt -s -l -w $(find . -type f -name '*.go' -not -path './vendor/*') | tee /dev/stderr)
4
-IMAGE_REPO = docker.io
+IMAGE_REPO = securego
5
BUILDFLAGS := ''
6
CGO_ENABLED = 0
7
@@ -41,8 +41,7 @@ image: build-linux
41
42
image-push: image
43
@echo "Pushing the Docker image..."
44
-
45
-docker push $(IMAGE_REPO)/$(BIN):$(GIT_TAG)
+ docker push $(IMAGE_REPO)/$(BIN):$(GIT_TAG)
46
docker push $(IMAGE_REPO)/$(BIN):latest
47
48
.PHONY: test build clean release image image-push
0 commit comments