From bc741e24b1900c4dd0ce3d14cd9ba4c0c557c464 Mon Sep 17 00:00:00 2001 From: Harshad Hegde Date: Thu, 26 May 2022 10:56:09 -0500 Subject: [PATCH] changed deploy config --- src/ontology/bero.Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ontology/bero.Makefile b/src/ontology/bero.Makefile index 8254fe8..85b590c 100644 --- a/src/ontology/bero.Makefile +++ b/src/ontology/bero.Makefile @@ -57,7 +57,9 @@ $(IMPORTDIR)/mesh_import.owl: $(MIRRORDIR)/mesh.owl query --update ../sparql/preprocess-module.ru --update ../sparql/inject-subset-declaration.ru --update ../sparql/postprocess-module.ru \ annotate --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) --output $@.tmp.owl && mv $@.tmp.owl $@; fi +MAIN_FILES_RELEASE = $(foreach n,$(MAIN_FILES), ../../$(n)) + deploy_release: @test $(GHVERSION) - ls -alt $(MAIN_FILES) - gh release create $(GHVERSION) --notes "TBD." --title "$(GHVERSION)" --draft $(MAIN_FILES) --generate-notes + ls -alt $(MAIN_FILES_RELEASE) + gh release create $(GHVERSION) --notes "TBD." --title "$(GHVERSION)" --draft $(MAIN_FILES_RELEASE) --generate-notes