From 60ce4545a05c3b2ddc2364adc7240a0a7b2d58e0 Mon Sep 17 00:00:00 2001 From: Sebastien Taggart Date: Thu, 9 Apr 2026 19:59:11 -0400 Subject: [PATCH] Fix deploy-prod tag clobber and add validate to make dev --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f2f11d9..75c1bff 100644 --- a/Makefile +++ b/Makefile @@ -39,6 +39,7 @@ check: # Preview what sync would generate without writing any files. dev: + ./sync.sh --validate ./sync.sh --dry-run # Regenerate .claude/commands/ and other adapter output from skills/. @@ -97,5 +98,6 @@ deploy-preview: # Publish a tagged release to production. deploy-prod: git checkout $(PRODUCTION_BRANCH) - git pull --rebase origin $(PRODUCTION_BRANCH) --tags + git pull --rebase origin $(PRODUCTION_BRANCH) + git fetch origin --tags --force git push origin $(PRODUCTION_BRANCH) --tags