re-enable site updates on nightly builds

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-02-06 15:37:56 +01:00
parent 13c7f06317
commit dc0d0b59cb
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 1 additions and 2 deletions

View File

@ -69,14 +69,13 @@ pipeline {
switch (btype) {
/* legacy naming, should have named it nightly.json */
case 'nightly': cmn.updateBucketJSON(urls, 'latest.json'); break
case 'release': cmn.updateBucketJSON(urls, 'release.json'); break
}
} }
}
stage('Publish') {
steps { script {
switch (btype) {
//case 'nightly': build('misc/status.im'); break
case 'nightly': build('misc/status.im', wait: false); break
case 'release': gh.publishReleaseMobile(); break
}
} }