60 lines
1.9 KiB
Groovy
60 lines
1.9 KiB
Groovy
pipeline {
|
|
agent {
|
|
label 'docker'
|
|
}
|
|
stages {
|
|
stage("Clean workspace") {
|
|
steps {
|
|
script {
|
|
sh "ls"
|
|
deleteDir()
|
|
sh "ls"
|
|
}
|
|
}
|
|
}
|
|
stage('Checkout SCM') {
|
|
steps {
|
|
git branch: 'main', url: 'https://git.ruff.co.il/tom/otomai-docker.git'
|
|
}
|
|
}
|
|
stage('Download Latest release') {
|
|
steps {
|
|
sh 'curl -LO https://github.com/dvtzr/otomai/releases/latest/download/Otomai-web.zip'
|
|
}
|
|
}
|
|
stage('Create web game directory') {
|
|
steps {
|
|
sh 'mkdir ./game-data'
|
|
}
|
|
}
|
|
stage('Unzip File') {
|
|
steps {
|
|
sh 'unzip -d game-data/ Otomai-web.zip'
|
|
}
|
|
}
|
|
stage('Build Docker Image') {
|
|
steps {
|
|
dir('./') {
|
|
script {
|
|
// Define image name and registry details
|
|
def imageNameId = "git.ruff.co.il/tom/otomai-web:${env.BUILD_ID}"
|
|
def imageNameLatest = "git.ruff.co.il/tom/otomai-web:latest"
|
|
def registryCredentialsId = 'a9635f55-73fb-4fdb-9f0a-19bc48033164'
|
|
|
|
// Login to the Docker registry with credentials
|
|
docker.withRegistry('https://git.ruff.co.il', registryCredentialsId) {
|
|
// Build and push images using docker.build()
|
|
def customImageId = docker.build(imageNameId)
|
|
def customImageLatest = docker.build(imageNameLatest)
|
|
|
|
// Push image to registry
|
|
customImageId.push()
|
|
customImageLatest.push()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|