oc-deploy/Makefile

26 lines
476 B
Makefile
Raw Normal View History

2024-09-13 14:43:09 +02:00
#!make
include env
export
ifndef OC_VERSION
$(error OC_VERSION is not set)
endif
ifndef PUBLISH_TOKEN
$(error PUBLISH_TOKEN is not set)
endif
# PUBLISH_REPO := "na/oc-version"
PUBLISH_REPO := "ej/oc-test"
PUBLISH_BRANCH := main
.PHONY: publish
2024-09-11 15:44:20 +02:00
publish:
2024-09-13 14:43:09 +02:00
@echo Publication de : ${OC_VERSION}
@(cd publish && \
PUBLISH_REPO=${PUBLISH_REPO} \
PUBLISH_TOKEN=${PUBLISH_TOKEN} \
PUBLISH_BRANCH=${PUBLISH_BRANCH} \
go run main.go ${OC_VERSION})