Fix warning spam
parent
4cf7914f3b
commit
d55e46d644
|
|
@ -49,7 +49,7 @@ inputs:
|
|||
description: 'The android versionCode'
|
||||
androidAppBundle:
|
||||
required: false
|
||||
default: 'false'
|
||||
default: ''
|
||||
description: '[Deprecated] Use androidExportType instead. Whether to build .aab instead of .apk'
|
||||
androidExportType:
|
||||
required: false
|
||||
|
|
|
|||
|
|
@ -6614,7 +6614,7 @@ class Input {
|
|||
static get androidAppBundle() {
|
||||
// Only throw warning if defined
|
||||
let input = Input.getInput('androidAppBundle');
|
||||
if (input !== undefined) {
|
||||
if (input !== '') {
|
||||
core.warning('androidAppBundle is deprecated, please use androidExportType instead');
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -145,7 +145,7 @@ class Input {
|
|||
static get androidAppBundle(): boolean {
|
||||
// Only throw warning if defined
|
||||
let input = Input.getInput('androidAppBundle');
|
||||
if (input !== undefined) {
|
||||
if (input !== '') {
|
||||
core.warning('androidAppBundle is deprecated, please use androidExportType instead');
|
||||
} else {
|
||||
input = 'false';
|
||||
|
|
|
|||
Loading…
Reference in New Issue