Skip to content

Commit

Permalink
jenkins: Add default value to RELEASE_NOTES of kolibri-installer-andr…
Browse files Browse the repository at this point in the history
…oid-upload

We use kolibri-installer-android-upload job only to upload to internal
testers. The real release notes are written in Google Play Console and
only when promoting the testing build. For internal testers the notes
aren't actually needed.

Add an empty array as the default value to the parameter RELEASE_NOTES
of kolibri-installer-android-upload job.

https://phabricator.endlessm.com/T34808
  • Loading branch information
starnight committed Jun 16, 2023
1 parent 438e18f commit a168b2e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Jenkinsfile-upload
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ pipeline {
parameters {
text(
name: 'RELEASE_NOTES',
default: '[]',
description: '''\
<p>Release notes in JSON. The expected format is
an array of objects with <code>language</code> and <code>text</code>
Expand All @@ -19,6 +20,8 @@ properties. For example:</p>
{"language": "en-US", "text": "Fixed a problem"},
{"language": "de-DE", "text": "Ein Problem wurde behoben"}
]

An Empty array is the default value.
</pre>''',
)
}
Expand Down

0 comments on commit a168b2e

Please sign in to comment.