From ecae3422a9c37e5a0b0a81dd44c281de76c1fd6d Mon Sep 17 00:00:00 2001 From: Adam R Grey Date: Sun, 3 Dec 2023 23:16:51 -0500 Subject: [PATCH] one more jenkins file update --- Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index e9f8f32..2edd41e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,6 +12,12 @@ pipeline { archiveArtifacts artifacts: 'bin/Release/net7.0/linux-x64/publish/*' } } + stage('pi') { + steps { + sh 'dotnet publish directors-assistant.csproj --configuration Release --runtime linux-arm64 --self-contained' + archiveArtifacts artifacts: 'bin/Release/net7.0/linux-x64/publish/*' + } + } stage('windows') { steps { sh 'dotnet publish directors-assistant.csproj --configuration Release --os win'