diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-01-11 09:17:44 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-01-11 09:17:44 +0100 |
commit | 61a76c01cafa0efb237b40a390aa15bf3c2721b1 (patch) | |
tree | 43076f1559f6050c9bbaed81ae456cc651efc8df | |
parent | 4c42851c53a5884b36a1a7850b7b663e4faf82c9 (diff) | |
download | vyos-build-61a76c01cafa0efb237b40a390aa15bf3c2721b1.tar.gz vyos-build-61a76c01cafa0efb237b40a390aa15bf3c2721b1.zip |
Jenkins: add deploy stage do pipeline
-rw-r--r-- | Jenkinsfile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 7a78028..5dda60e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -50,6 +50,11 @@ pipeline { ''' } } + stage('Deploy') { + steps { + archiveArtifacts artifacts: 'build/vyos-*-rolling*.iso', fingerprint: true + } + } } post { |