Files
WorldCraft_Discord_Bot/Jenkinsfile
2020-11-14 13:00:31 +01:00

18 lines
345 B
Groovy
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
pipeline {
agent any
stages {
stage('Build Docker Image') {
steps {
sh 'docker build -t worldcraftdiscordbot:latest .'
sh "docker tag worldcraftdiscordbot:latest worldcraftdiscordbot:v${env.BUILD_ID}"
}
}
stage('Publish') {
steps {
sh './publish.sh ${env.BUILD_ID}'
}
}
}
}