From 111fb45ea80314773084acce872eba4105db52d5 Mon Sep 17 00:00:00 2001 From: JT Date: Fri, 9 Jun 2023 00:04:08 -0700 Subject: [PATCH 1/2] publish single file = true --- StabilityMatrix/StabilityMatrix.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/StabilityMatrix/StabilityMatrix.csproj b/StabilityMatrix/StabilityMatrix.csproj index ea6c33e5..006b5a5a 100644 --- a/StabilityMatrix/StabilityMatrix.csproj +++ b/StabilityMatrix/StabilityMatrix.csproj @@ -11,6 +11,7 @@ 11 en Assets\** + true From 85cf10d4e5934a0b1f0d37639ae08063aedfcbf1 Mon Sep 17 00:00:00 2001 From: JT Date: Fri, 9 Jun 2023 00:06:42 -0700 Subject: [PATCH 2/2] update Jenkinsfile for single-file artifacts --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 16501831..d7b9553f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,7 +25,7 @@ node("Windows") { if (env.BRANCH_NAME == "main") { stage ('Archive Artifacts') { - archiveArtifacts artifacts: 'out/**/*.*', followSymlinks: false + archiveArtifacts artifacts: 'out/*.exe', followSymlinks: false } } }