Skip to content

Commit 891e8e2

Browse files
Фикс пайплайна публикации
1 parent 21caf74 commit 891e8e2

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

ci/pipelines/publish.jenkinsfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@ pipeline {
22
agent {
33
label 'windows'
44
}
5-
stage('Git - Publish releases') {
6-
steps {
7-
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
8-
bat encoding: 'UTF-8', script:'chcp 65001 & oscript ./ci/os/internal/Classes/ReleasePublisher.os %GPGKEY%'
5+
stages {
6+
stage('Git - Publish releases') {
7+
steps {
8+
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
9+
bat encoding: 'UTF-8', script:'chcp 65001 & oscript ./ci/os/internal/Classes/ReleasePublisher.os %GPGKEY%'
10+
}
911
}
1012
}
1113
}

0 commit comments

Comments
 (0)