Fix warning spam

pull/529/head
Andrew Kahr 2023-03-05 11:55:44 -08:00
parent 6d342d0dc6
commit 6e7a769cf3
3 changed files with 3 additions and 5 deletions

3
dist/index.js generated vendored
View File

@ -6614,8 +6614,7 @@ class Input {
static get androidAppBundle() {
// Only throw warning if defined
let input = Input.getInput('androidAppBundle');
core.info(`androidAppBundle: ${input}`);
if (input !== '') {
if (input !== undefined) {
core.warning('androidAppBundle is deprecated, please use androidExportType instead');
}
else {

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -145,8 +145,7 @@ class Input {
static get androidAppBundle(): boolean {
// Only throw warning if defined
let input = Input.getInput('androidAppBundle');
core.info(`androidAppBundle: ${input}`);
if (input !== '') {
if (input !== undefined) {
core.warning('androidAppBundle is deprecated, please use androidExportType instead');
} else {
input = 'false';