jenkins: build() doesn't like mixed arguments

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-02-14 17:36:24 +01:00
parent 965dce053d
commit 3d52d1cb9c
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ pipeline {
stage('Publish') {
steps { script {
switch (btype) {
case 'nightly': build('misc/status.im', wait: false); break
case 'nightly': build(job: 'misc/status.im', wait: false); break
case 'release': gh.publishReleaseMobile(); break
}
} }