alliance-boreale/Makefile
Dan Allaire 5cee1f145e
Some checks are pending
CI / yaml-lint (push) Waiting to run
CI / ssot-export (push) Waiting to run
CI / tests (push) Waiting to run
CI / docs (push) Waiting to run
gov/docs: constitution + règles de contribution/sécurité + CODEOWNERS + CI
2025-10-18 22:32:55 -04:00

20 lines
424 B
Makefile

SHELL := /bin/bash
.PHONY: all ssot docs test release
all: ssot docs
ssot:
@node configure/export.mjs || (echo "Run: npm -C configure i"; exit 1)
@echo "✅ SSOT exports → ./out"
docs:
@mkdocs build --strict
@echo "✅ Docs build → site/"
test:
@node configure/tests/test.mjs
release:
@[ -n "$$V" ] || (echo "Usage: make release V=2025.1"; exit 1)
git tag -a "v$$V" -m "release v$$V"
git push origin "v$$V"