feature: updated scripts, Jenkinsfile. added install.sh

This commit is contained in:
2025-03-08 02:08:53 +03:00
parent cbbb454a35
commit 9d60348b8b
5 changed files with 41 additions and 29 deletions

View File

@@ -41,22 +41,6 @@ pipeline {
}
}
// Дополнительная сборка для релизов
stage('Build: Release Binaries And Deploy Image') {
when {
anyOf {
tag "release-*"
tag "binaries-*"
}
}
steps {
script {
env.CI_DOCKER_FILES_PRESET="release"
}
runGroovy 'release_docker_gitea_publish'
}
}
// Пушим собранный образ в Docker Registry
stage('Publish: Release docker image') {
when {
@@ -71,7 +55,7 @@ pipeline {
}
// Создаем в Gitea релиз с бинарями
stage('Publish: Create gitea release') {
stage('Publish: Build binaries and create gitea release') {
when {
anyOf {
tag "release-*"