Deploy to production.
All checks were successful
thehideout/TheHideout-UI/pipeline/head This commit looks good

This commit is contained in:
Tom Butcher 2026-01-02 23:21:12 +00:00
parent d5c6a468eb
commit 233812ad91

2
Jenkinsfile vendored
View File

@ -22,7 +22,7 @@ def deploy() {
stage('Deploy') { stage('Deploy') {
// Deploy to Cloudflare Pages using wrangler // Deploy to Cloudflare Pages using wrangler
withCredentials([string(credentialsId: 'th-cloudflare-api-token', variable: 'CLOUDFLARE_API_TOKEN')]) { 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'
} }
} }
} }