Parcourir la source

replace tab as space

aexiaoliou il y a 2 ans
Parent
commit
de10a24069
1 fichiers modifiés avec 8 ajouts et 8 suppressions
  1. 8 8
      Jenkinsfile

+ 8 - 8
Jenkinsfile

@@ -1,16 +1,16 @@
 pipeline {
-	agent none
-	stages {
+    agent none
+    stages {
         // 生产
-		stage('prod') {
+        stage('prod') {
             agent { dockerfile true }
             when {
                 branch 'master'
             }
-			steps {
-				sh 'composer'
-			}
-		}
+            steps {
+                sh 'composer'
+            }
+        }
         // 测试环境
         stage('test') {
             agent { docker 'php:7.4-cli' }
@@ -21,5 +21,5 @@ pipeline {
                 sh 'php --version'
             }
         }
-	}
+    }
 }