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'