Files
WorldCraft_Discord_Bot/Jenkinsfile
victormylle 072148f009 fixed
2020-11-14 13:03:26 +01:00

18 lines
345 B
Groovy

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}"
}
}
}
}