jenkinsfile update attempt again
Some checks failed
gitea/directors-assistant/pipeline/head There was a failure building this commit

This commit is contained in:
Adam R Grey 2023-12-03 22:11:15 -05:00
parent ba68fb79c1
commit 805b0cc476

4
Jenkinsfile vendored
View File

@ -9,13 +9,13 @@ pipeline {
}
stage('linux') {
steps {
sh 'dotnet publish --configuration Release --os linux'
sh 'dotnet publish directors-assistant.csproj --configuration Release --os linux'
archiveArtifacts artifacts: 'bin/Release/net7.0/linux-x64/publish/*.*'
}
}
stage('windows') {
steps {
sh 'dotnet publish --configuration Release --os windows'
sh 'dotnet publish directors-assistant.csproj --configuration Release --os windows'
archiveArtifacts artifacts: 'bin/Release/net7.0/windows-x64/publish/*.*'
}
}