mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-06 17:20:24 +00:00
Add CI to testing proxmox integration --------- Signed-off-by: Andrei Kvapil <kvapss@gmail.com> Signed-off-by: Kingdon Barrett <kingdon+github@tuesdaystudios.com> Co-authored-by: Andrei Kvapil <kvapss@gmail.com> Co-authored-by: Nikita <166552198+nbykov0@users.noreply.github.com> Co-authored-by: Kingdon Barrett <kingdon+notify@tuesdaystudios.com> Co-authored-by: Kingdon Barrett <kingdon+github@tuesdaystudios.com>
12 lines
354 B
Makefile
12 lines
354 B
Makefile
REGISTRY := ghcr.io/aenix-io/cozystack
|
|
|
|
PUSH := 1
|
|
LOAD := 0
|
|
VERSION = $(patsubst v%,%,$(shell git describe --tags --abbrev=0))
|
|
TAG = $(shell git describe --tags --exact-match 2>/dev/null || echo latest)
|
|
|
|
# Returns 'latest' if the git tag is not assigned, otherwise returns the provided value
|
|
define settag
|
|
$(if $(filter $(TAG),latest),latest,$(1))
|
|
endef
|