jenkinsfile fix maybe?

This commit is contained in:
Adam R Grey 2022-12-14 18:05:13 -05:00
parent a6caf42a0f
commit 9c3641f6f9

4
Jenkinsfile vendored
View File

@ -12,13 +12,13 @@ pipeline {
stage('linux') { stage('linux') {
steps { steps {
sh 'dotnet publish --configuration Release --os linux' sh 'dotnet publish --configuration Release --os linux'
archiveArtifacts artifacts: 'bin/Release/net/net6.0/linux-x64/publish/*.*' archiveArtifacts artifacts: '/bin/Release/net/net6.0/linux-x64/publish/*.*'
} }
} }
stage('windows') { stage('windows') {
steps { steps {
sh 'dotnet publish --configuration Release --os windows' sh 'dotnet publish --configuration Release --os windows'
archiveArtifacts artifacts: 'bin/Release/net/net6.0/windows-x64/publish/*.*' archiveArtifacts artifacts: '/bin/Release/net/net6.0/windows-x64/publish/*.*'
} }
} }
} }