mirror of
https://github.com/actions/checkout.git
synced 2025-05-04 15:40:02 +00:00
Add ability to set credential provider for the LFS server
This commit is contained in:
parent
5262024a96
commit
fd6a72039b
6 changed files with 47 additions and 2 deletions
|
@ -92,6 +92,7 @@ export async function getInputs(): Promise<IGitSourceSettings> {
|
|||
// LFS
|
||||
result.lfs = (core.getInput('lfs') || 'false').toUpperCase() === 'TRUE'
|
||||
result.lfsurl = (core.getInput('lfs-url') || '')
|
||||
result.lfsCredProvider = (core.getInput('lfs-url-cred-provider') || '')
|
||||
core.debug(`lfs = ${result.lfs}`)
|
||||
|
||||
// Submodules
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue