From ca2286126ea91a3fc263a0f3bae637dd0dfc4be3 Mon Sep 17 00:00:00 2001 From: Adam R Grey Date: Tue, 6 Dec 2022 15:27:17 -0500 Subject: [PATCH] build for different OSs, in theory --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0049aff..7dc5d0e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,7 +7,8 @@ pipeline { stage('Build') { steps { echo 'Building..' - sh 'dotnet publish --configuration Release --output PUBLISH' + sh 'dotnet publish --configuration Release --output PUBLISH-linux --os linux' + sh 'dotnet publish --configuration Release --output PUBLISH-windows --os windows' } } }