diff options
| author | 2026-06-22 21:47:33 +0700 | |
|---|---|---|
| committer | 2026-06-22 21:47:33 +0700 | |
| commit | 2cd4d07ae677bb79aaca144c87c4ee021fac8078 (patch) | |
| tree | 60848b6c2e4750657dd05605b271bec80ad8f0a6 | |
| parent | d45f13765e0f45ca4d714ee9becca9f1b316b380 (diff) | |
| download | web-2cd4d07ae677bb79aaca144c87c4ee021fac8078.tar.gz web-2cd4d07ae677bb79aaca144c87c4ee021fac8078.zip | |
fix: hardcoded name of the kaniko pod
| -rw-r--r-- | Jenkinsfile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 55fbc6c..2eb561b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,13 +13,13 @@ pipeline { checkout scm sh ''' npm install tailwindcss @tailwindcss/cli @tailwindcss/forms - npx tailwindcss -i static/input.css -o static/output.css --watch + npx tailwindcss -i static/input.css -o static/output.css --minify ''' stash name: 'tailwindcss-output', includes: 'static/output.css' } } - stage('Build') { + stage('Matrix Build') { matrix { axes { axis { @@ -40,7 +40,6 @@ pipeline { apiVersion: v1 kind: Pod metadata: - name: kaniko-sayauz-web namespace: jenkins spec: containers: |