This commit is contained in:
areeqakbr 2025-02-25 09:41:15 +07:00
parent 9c4e0908a1
commit e64c275b3b
2 changed files with 3 additions and 5 deletions

View File

@ -3,7 +3,7 @@ on:
push:
branches:
- dev
jobs:
build:
name: Build and push image

6
Jenkinsfile vendored
View File

@ -23,8 +23,6 @@ spec:
"""
}
}
pipeline {
agent any // Runs on an Ubuntu-based Jenkins agent
environment {
REGISTRY_URL = 'git.winteraccess.id'
@ -42,7 +40,6 @@ pipeline {
}
}
}
}
stage('Get Short SHA') {
steps {
@ -102,10 +99,11 @@ pipeline {
}
}
}
}
post {
always {
cleanWs()
}
}
}
}