Skip to content

Commit

Permalink
yml does not support passing bools
Browse files Browse the repository at this point in the history
  • Loading branch information
ink-pot-monkey committed Aug 20, 2020
1 parent abfbfec commit 9c58fd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const BuildScheme = core.getInput("BuildScheme");
const Project = core.getInput("project");
const Configuration = core.getInput("Configuration") || "Release";
const Clean = core.getInput("Clean") || false;
const Archive = core.getInput("ArchiveForTestFlight");
const Archive = core.getInput("ArchiveForTestFlight").toLowerCase() === 'true';
const AppleID = core.getInput("AppleID");
const ApplePassword = core.getInput("ApplePassword");

Expand Down

0 comments on commit 9c58fd5

Please sign in to comment.