From 6e1cc76ecfce0d1cc75e5152428f3e646a9df67a Mon Sep 17 00:00:00 2001 From: Ignat Date: Mon, 21 Oct 2024 22:02:40 +0500 Subject: [PATCH] ci: deploy storybook from the current branch --- .vercel/storybook-branch-filtering.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vercel/storybook-branch-filtering.sh b/.vercel/storybook-branch-filtering.sh index 988b9e3be..7af20624b 100644 --- a/.vercel/storybook-branch-filtering.sh +++ b/.vercel/storybook-branch-filtering.sh @@ -2,7 +2,7 @@ echo "VERCEL_GIT_COMMIT_REF: $VERCEL_GIT_COMMIT_REF" -if [[ "$VERCEL_GIT_COMMIT_REF" == "develop" ]] ; then +if [[ "$VERCEL_GIT_COMMIT_REF" == "develop" || "$VERCEL_GIT_COMMIT_REF" == "task/new-design-system" ]] ; then # Proceed with the build echo "✅ - Build can proceed" exit 1;