pipeline {
  agent any
  options { timestamps() }
  stages {
    stage('CI') {
      steps {
        sh 'bash scripts/ci/jenkins-run.sh'
      }
    }
  }
  post {
    success {
      archiveArtifacts artifacts: 'dist/docker-compose.coolify.yml', onlyIfSuccessful: true
    }
  }
}
