Skip to content

Commit ddea38e

Browse files
committed
add missing release Make target
Signed-off-by: Tim Ramlot <[email protected]>
1 parent a625714 commit ddea38e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

make/02_mod.mk

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,17 @@
1313
# limitations under the License.
1414

1515
include make/test-unit.mk
16+
17+
.PHONY: dryrun-release
18+
## Dry-run release process
19+
## @category [shared] Release
20+
dryrun-release: export RELEASE_DRYRUN := true
21+
dryrun-release: release
22+
23+
.PHONY: release
24+
## Publish all release artifacts (image + helm chart)
25+
## @category [shared] Release
26+
release: | $(NEEDS_CRANE) $(bin_dir)/scratch
27+
$(MAKE) exe-publish
28+
29+
@echo "Release complete!"

0 commit comments

Comments
 (0)