From 90582b1228a76e4f7e8e2e5ea4f48d0c71c428d2 Mon Sep 17 00:00:00 2001 From: southerndind Date: Sun, 15 Nov 2020 23:02:31 +0900 Subject: [PATCH] =?UTF-8?q?runtime=E3=82=92=E6=8C=87=E5=AE=9A=E3=81=99?= =?UTF-8?q?=E3=82=8B=E3=81=A8=E3=83=93=E3=83=AB=E3=83=89=E3=81=AB=E5=A4=B1?= =?UTF-8?q?=E6=95=97=E3=81=99=E3=82=8B=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 解決策不明。issueはあがっていたので、これが解決したらもとに戻す。https://github.com/dotnet/sdk/issues/14281 --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 45c2e27..6b0b099 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,7 +8,7 @@ node { } stage('Build'){ - dotnetBuild configuration: 'Release', project: 'HomeDashboard.sln', runtime: 'linux-x64', sdk: '.NET5', unstableIfWarnings: true + dotnetBuild configuration: 'Release', project: 'HomeDashboard.sln', sdk: '.NET5', unstableIfWarnings: true } withCredentials( \ @@ -18,7 +18,7 @@ node { usernameVariable: 'SSH_USER')]) { stage('Deploy'){ - sh 'scp -pr -i ${SSH_KEY} ./Back/bin/Release/net5/linux-x64/* ${SSH_USER}@home-server.localnet: /opt/back-end-api-service' + sh 'scp -pr -i ${SSH_KEY} ./Back/bin/Release/net5/* ${SSH_USER}@home-server.localnet:/opt/back-end-api-service' } stage('Restart'){