Actually run deploy flag

This commit is contained in:
Gabriel Simmer 2023-05-05 11:13:50 +01:00
parent e8ac530366
commit db9a23f600
Signed by: arch
GPG key ID: C81B106D46C5B875

View file

@ -21,7 +21,7 @@ tasks:
export CI_BRANCH=$(git rev-parse --abbrev-ref HEAD) export CI_BRANCH=$(git rev-parse --abbrev-ref HEAD)
# If trunk branch, use --prod, otherwise just deploy # If trunk branch, use --prod, otherwise just deploy
if [ "$CI_BRANCH" = "trunk" ]; then if [ "$CI_BRANCH" = "trunk" ]; then
vercel --prod vercel deploy --prod
else else
vercel vercel deploy
fi fi