mirror of
https://gitlab.com/djdietrick/docs
synced 2026-05-02 21:00:54 -04:00
16 lines
400 B
Groovy
16 lines
400 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'docker build -t docs:latest .'
|
|
}
|
|
}
|
|
stage('Push') {
|
|
steps {
|
|
sh 'docker tag docs:latest registry.dietrick.dev/djdietrick/docs:latest'
|
|
sh 'docker push registry.dietrick.dev/djdietrick/docs:latest'
|
|
}
|
|
}
|
|
}
|
|
} |