iamkonstantin/Makefile

12 lines
423 B
Makefile
Raw Permalink Normal View History

2025-05-15 11:54:27 +02:00
.PHONY: help bump publish
VERSION = 1.9.15
2024-03-12 18:14:57 +01:00
help:
@perl -nle'print $& if m{^[a-zA-Z_-]+:.*?## .*$$}' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
publish:
2024-11-10 15:25:33 +01:00
# something to try: --provenance=false
@docker buildx build -t code.headbright.be/konstantin/iamkonstantin:$(VERSION) --platform linux/arm64 --push .
2024-03-29 18:43:38 +01:00
bump:
@bash ./bump_version.sh
2024-04-09 09:36:18 +02:00
upgrade: build publish