automated push from the terminal
All checks were successful
code.valorantdigital.com-projectgaruda/portal.intranet.valorantdigital.com/pipeline/head This commit looks good

This commit is contained in:
Your Name
2025-09-12 21:53:15 -04:00
parent 7e59dc42f8
commit 77a03b026c
7 changed files with 179 additions and 2 deletions

55
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,55 @@
pipeline {
agent none
options {
disableConcurrentBuilds(abortPrevious: true)
buildDiscarder(logRotator(numToKeepStr: '1'))
}
stages {
stage('docker compose build') {
agent {
label "sian"
}
steps {
dir('.') {
sh 'docker compose build'
}
}
}
stage('docker compose push') {
agent {
label "sian"
}
steps {
dir('.') {
sh 'docker compose push'
}
}
}
}}