fixed pipeline
Some checks failed
drawio-export/pipeline/head This commit looks good
drawio-export/pipeline/tag There was a failure building this commit

This commit is contained in:
Алексей Бадяев 2023-04-12 22:46:47 +07:00
parent 6df463a2b2
commit 50dec0cb60
Signed by: alexey
GPG Key ID: 686FBC1363E4AFAE
2 changed files with 8 additions and 8 deletions

View File

@ -4,7 +4,7 @@
Формат основан на [Keep a Changelog](https://keepachangelog.com/ru/1.1.0/),
и этот проект придерживается [Semantic Versioning](https://semver.org/lang/ru/).
## [1.0] - Не опубликовано
## [1.0](https://git.mousesoft.ru/ms/drawio-export/releases/tag/v1.0) - 2023-04-12
- **Добавлено**
- Все параметры передаются программе `drawio` из пакета `drawio-desktop` без

14
build/ci/Jenkinsfile vendored
View File

@ -11,7 +11,7 @@ pipeline {
}
environment {
PROJECT_OWNER = 'ms'
PROJECT_ID = 'drawio-exporter'
PROJECT_ID = 'drawio-export'
PROJECT_NAME = 'MouseSoft Draw.io Exporter'
ROCKET_TITLE = "${currentBuild.fullDisplayName} (<${env.BUILD_URL}|Open>)"
RELEASE_ID = 0
@ -121,12 +121,12 @@ pipeline {
find -O1 dist/ -name '*.changes' -exec dput mousesoft \\{\\} \\;
'''
script {
// msUploadFilesToRelease(
// "${PROJECT_OWNER}",
// "${PROJECT_ID}",
// RELEASE_ID,
// ['dist/*.deb'],
// )
msUploadFilesToRelease(
"${PROJECT_OWNER}",
"${PROJECT_ID}",
RELEASE_ID,
['dist/*.deb'],
)
if( currentBuild.currentResult == 'SUCCESS' ) {
currentBuild.keepLog = true
}