From 774a2a68cc05bf88315348c20d43de1c2e9a356e Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Tue, 9 Jan 2024 13:57:00 -0700 Subject: [PATCH] feat: specify release target --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 63ae2d4c5..9edc0a852 100644 --- a/Makefile +++ b/Makefile @@ -58,8 +58,9 @@ prettier-fix: ## release - Cuts a release for the project on GitHub (requires GitHub CLI) # tag = The associated tag title of the release +# target = Target branch or full commit SHA release: - gh release create ${tag} dist/* + gh release create ${tag} dist/* --target ${target} ## scan - Runs security analysis on the project with Brakeman scan: