Debug print

pull/529/head
Andrew Kahr 2023-03-05 11:51:53 -08:00
parent d55e46d644
commit 6d342d0dc6
3 changed files with 3 additions and 1 deletions

1
dist/index.js vendored
View File

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

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

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