18 lines
329 B
Groovy
18 lines
329 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'
|
|
}
|
|
}
|
|
|
|
}
|
|
} |