fix_: release version for publishReleaseFiles (#16890)

This commit is contained in:
Igor Sirotin 2024-12-05 16:44:15 +00:00 committed by GitHub
parent 50c065f606
commit 5bfa97caae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -86,7 +86,8 @@ pipeline {
stage('Publish') {
when { expression { params.PUBLISH } }
steps { script {
github.publishReleaseFiles(repo: 'status-desktop');
def version = sh(script: './scripts/version.sh', returnStdout: true).trim()
github.publishReleaseFiles(repo: 'status-desktop', version: version);
} }
}
}