Created
December 31, 2020 10:45
-
-
Save initcron/37f5af9eaed654cad8740385bff43486 to your computer and use it in GitHub Desktop.
Deploy to Dev Stage
This file contains hidden or 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
| stage('deploy to dev'){ | |
| agent any | |
| when{ | |
| branch 'master' | |
| } | |
| steps{ | |
| echo 'Deploy instavote app with docker compose' | |
| sh 'docker-compose up -d' | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment