From c25b9381c447ecaaa9fc689d777c82070bac351b Mon Sep 17 00:00:00 2001 From: AnibalMG Date: Fri, 28 Nov 2025 11:29:33 +0100 Subject: [PATCH] Fix: make deploy aware of specific profile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a8e3046e..42eff13a 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ clobber: clean $(addsuffix .ph_clobber,$(PROJECTS)) .PHONY: deploy deploy: - @aws s3 sync --delete --acl public-read \ + @aws s3 sync --profile ${PROFILE} --delete --acl public-read \ --exclude "*" --include "*/assets/*" --exclude "*/.gitkeep" \ recipes s3://${S3_BUCKET}/${RELEASE_TAG}/recipes/;\