one more jenkins file update
All checks were successful
gitea/directors-assistant/pipeline/head This commit looks good

This commit is contained in:
Adam R Grey 2023-12-03 23:16:51 -05:00
parent e70519a5e8
commit ecae3422a9

6
Jenkinsfile vendored
View File

@ -12,6 +12,12 @@ pipeline {
archiveArtifacts artifacts: 'bin/Release/net7.0/linux-x64/publish/*' 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') { stage('windows') {
steps { steps {
sh 'dotnet publish directors-assistant.csproj --configuration Release --os win' sh 'dotnet publish directors-assistant.csproj --configuration Release --os win'