Replaced bool values with strings (#2)
This commit is contained in:
parent
a11750b1de
commit
9182f4160b
2 changed files with 8 additions and 8 deletions
|
|
@ -44,10 +44,10 @@ export async function createBinDir(workDir: string): Promise<string> {
|
|||
}
|
||||
|
||||
export async function installer(version: string): Promise<void> {
|
||||
const extended: boolean = core.getInput('extended');
|
||||
const extended: string = core.getInput('extended');
|
||||
core.debug(`Hugo extended: ${extended}`);
|
||||
|
||||
const withDeploy: boolean = core.getInput('withDeploy');
|
||||
const withDeploy: string = core.getInput('withDeploy');
|
||||
core.debug(`Hugo withDeploy: ${withDeploy}`);
|
||||
|
||||
const osName: string = getOS(process.platform);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue