once i figure out jenkins secrets, this'll be useful

This commit is contained in:
Adam R Grey 2024-04-05 23:02:15 -04:00
parent ef31418166
commit 2dd9e903db

8
Jenkinsfile vendored
View File

@ -13,5 +13,13 @@ pipeline {
archiveArtifacts artifacts: 'bin/Release/net7.0/linux-x64/publish/*' archiveArtifacts artifacts: 'bin/Release/net7.0/linux-x64/publish/*'
} }
} }
stage('Deploy'){
when{
branch "release"
}
steps{
}
}
} }
} }