diff --git a/Jenkinsfile b/Jenkinsfile index 9de208d..8f86e08 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,7 +15,7 @@ def deploy() { stage('Deploy') { // Deploy to Cloudflare Pages using wrangler withCredentials([string(credentialsId: 'th-cloudflare-api-token', variable: 'CLOUDFLARE_API_TOKEN')]) { - sh 'yarn wrangler pages deploy dist' + sh 'npx wrangler pages deploy dist' } } }