about summary refs log tree commit diff stats
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rwxr-xr-xjustfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/justfile b/justfile
index 7ff0a1f..8b2922c 100755
--- a/justfile
+++ b/justfile
@@ -27,18 +27,18 @@ dev:
 
 ci: build check-links
 
-deploy-vercel-preview: clean build
+deploy-vercel-preview: build
 	vercel pull --environment=preview
 	vercel deploy
 
-deploy-vercel: clean build check-links
+deploy-vercel: build check-links
 	vercel pull --environment=production
 	vercel deploy --prod
 
-deploy-netlify-preview: clean build
+deploy-netlify-preview: build
 	netlify deploy
 
-deploy-netlify: clean build check-links
+deploy-netlify: build check-links
 	netlify deploy --prodIfUnlocked
 
 deploy-preview: deploy-vercel-preview deploy-netlify-preview