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' } } }