Skeleton ready

This commit is contained in:
2026-07-08 23:01:55 +04:00
commit d9e5effdce
75 changed files with 1989 additions and 0 deletions

35
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,35 @@
pipeline {
agent {
label "backend-agent"
}
environment {
PROJECT_NAME = "application-skeleton"
PROJECT_CREDENTIALS = credentials("applicationSkeleton.credentials")
}
stages {
stage("Doing something") {
steps() {
script {
pipe = setupWebhookPipeline()
def dateTag = sh(
script: 'date -u +%Y%m%d%H%M%S',
returnStdout: true
).trim()
env.VERSION = "v1.2.3-${dateTag}"
}
}
}
}
post {
success {
}
unsuccessful {
}
}
}