Created
June 20, 2017 13:46
-
-
Save mikebell/e3d246f411714be0fd2594b17cd9ccc9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env groovy | |
pipeline { | |
agent any | |
stages { | |
stage('Composer install') { | |
steps { | |
sh 'composer install' | |
archiveArtifacts artifacts: '**', fingerprint: true | |
} | |
} | |
stage('Deploy') { | |
steps { | |
sh './vendor/bin/dep deploy production' | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment