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
Adds a release github action and implements goreleaser, borrowing heavily from rukpak but stripped down a bit.
Signed-off-by: dtfranz <[email protected]>
release: substitute 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.
145
+
$(GORELEASER)$(GORELEASER_ARGS)
146
+
147
+
quickstart: VERSION ?= $(shell git describe --abbrev=0 --tags)
148
+
quickstart: kustomize generate ## Generate the installation release manifests
149
+
kubectl kustomize config/default | sed "s/:devel/:$(VERSION)/g"> operator-controller.yaml
0 commit comments