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
c51e56cd7a
commit
a0ec92ce0c
@ -9,7 +9,7 @@ export async function getInputs(): Promise<IGitSourceSettings> {
|
||||
const result = ({} as unknown) as IGitSourceSettings
|
||||
|
||||
// Working directory
|
||||
let workingDirectory = core.getInput('workingDirectory') || process.env['GITHUB_WORKSPACE']
|
||||
let workingDirectory = core.getInput('working-directory') || process.env['GITHUB_WORKSPACE']
|
||||
if (!workingDirectory) {
|
||||
throw new Error('working dir not defined')
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user