You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fixes default target. It looks like target `all`
was previously define first to implicitly set `build`
to be default target, but since introduction `include`
above the `all` target - now `BINGO` is default target.
This change explicitly sets `build` to be default.
* Sets several targets as phony as they are not targeting
a file and moves `.PHONY` closer to target definition
for better visibility.
* Removes unused `wait` target
Signed-off-by: Mikalai Radchuk <[email protected]>
docker-build: build-linux ## Build docker image for operator-controller with GOOS=linux and local GOARCH.
171
172
docker build -t ${IMG} -f Dockerfile ./bin/linux
@@ -178,9 +179,11 @@ docker-build: build-linux ## Build docker image for operator-controller with GOO
178
179
exportENABLE_RELEASE_PIPELINE ?= false
179
180
exportGORELEASER_ARGS ?= --snapshot --clean
180
181
182
+
.PHONY: release
181
183
release: $(GORELEASER)## Runs goreleaser for the operator-controller. By default, this will run only as a snapshot and will not publish any artifacts unless it is run with different arguments. To override the arguments, run with "GORELEASER_ARGS=...". When run as a github action from a tag, this target will publish a full release.
0 commit comments