소스 검색

Update 'Jenkinsfile'

관리자 2 달 전
부모
커밋
da142d469d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Jenkinsfile

+ 2 - 2
Jenkinsfile

@@ -8,8 +8,8 @@ pipeline {
     stages {
         stage('Build') {
             steps {
-                sh 'dotnet publish Web.Api -c Release -o publish/api'
-                sh 'dotnet publish Admin -c Release -o publish/admin'
+                sh 'dotnet publish Web.Api -c Release -r win-x64 --self-contained false -o publish/api'
+                sh 'dotnet publish Admin -c Release -r win-x64 --self-contained false -o publish/admin'
             }
         }
         stage('Deploy API') {