jenkinsfix?

boy good thing it's in the cloud, makes it a god damn pain in the ass
This commit is contained in:
Adam R Grey 2022-12-14 18:06:25 -05:00
parent 9c3641f6f9
commit 6a7ddcd45d

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/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/net6.0/windows-x64/publish/*.*'
} }
} }
} }