mirror of
https://gitea.com/actions/checkout.git
synced 2024-11-01 01:20:35 +01:00
fix input name (workingDirectory -> working-directory)
This commit is contained in:
parent
b0635286c5
commit
b2811239ce
@ -9,7 +9,7 @@ export async function getInputs(): Promise<IGitSourceSettings> {
|
|||||||
const result = {} as unknown as IGitSourceSettings
|
const result = {} as unknown as IGitSourceSettings
|
||||||
|
|
||||||
// Working directory
|
// Working directory
|
||||||
let workingDirectory = core.getInput('workingDirectory') || process.env['GITHUB_WORKSPACE']
|
let workingDirectory = core.getInput('working-directory') || process.env['GITHUB_WORKSPACE']
|
||||||
if (!workingDirectory) {
|
if (!workingDirectory) {
|
||||||
throw new Error('working dir not defined')
|
throw new Error('working dir not defined')
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user