From d52c2440d56c60a642b91bf35da3c984b0afa09f Mon Sep 17 00:00:00 2001 From: Sebastien Taggart Date: Thu, 26 Mar 2026 16:22:11 -0400 Subject: [PATCH] Add branch checkout before pull in deploy targets Co-Authored-By: Claude Opus 4.6 (1M context) --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 2995897..d1e56e2 100644 --- a/Makefile +++ b/Makefile @@ -90,10 +90,12 @@ endif # Push the integration branch for preview/testing. deploy-preview: + git checkout $(INTEGRATION_BRANCH) git pull --rebase origin $(INTEGRATION_BRANCH) git push origin $(INTEGRATION_BRANCH) # Publish a tagged release to production. deploy-prod: + git checkout $(PRODUCTION_BRANCH) git pull --rebase origin $(PRODUCTION_BRANCH) --tags git push origin $(PRODUCTION_BRANCH) --tags