jenkinsfile fix maybe?
This commit is contained in:
parent
a6caf42a0f
commit
9c3641f6f9
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -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/*.*'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user