12 lines
501 B
Text
12 lines
501 B
Text
|
|
# Append to sibling repo Makefile (adjust REPO slug if needed).
|
||
|
|
REGISTRY_RAW_URL ?= https://gitea.coulomb.social/coulomb/$(notdir $(CURDIR))/raw/main/registry/indexes/capabilities.yaml
|
||
|
|
|
||
|
|
.PHONY: registry-maintain registry-check
|
||
|
|
|
||
|
|
registry-maintain:
|
||
|
|
reuse-surface maintain --all --from-git-since origin/main
|
||
|
|
|
||
|
|
registry-check:
|
||
|
|
reuse-surface maintain --all --from-git-since origin/main --auto --no-llm
|
||
|
|
reuse-surface validate --root .
|
||
|
|
reuse-surface establish --publish-check --raw-url $(REGISTRY_RAW_URL)
|