From 233812ad914cbb52bcef504b768637d625eea441 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Fri, 2 Jan 2026 23:21:12 +0000 Subject: [PATCH] Deploy to production. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0cecb9a..b6562bd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,7 +22,7 @@ def deploy() { stage('Deploy') { // Deploy to Cloudflare Pages using wrangler withCredentials([string(credentialsId: 'th-cloudflare-api-token', variable: 'CLOUDFLARE_API_TOKEN')]) { - sh 'npx wrangler pages deploy dist' + sh 'npx wrangler pages deploy ./dist --skip-caching --branch production' } } }