mirror of
https://github.com/actions/checkout.git
synced 2026-07-31 10:59:37 +00:00
Regenerate dist
This commit is contained in:
parent
6f5159f88a
commit
8471d8a73a
9
dist/index.js
vendored
9
dist/index.js
vendored
|
|
@ -35816,6 +35816,9 @@ class GitCommandManager {
|
||||||
const output = await this.execGit(['rev-parse', '--symbolic-full-name', '--verify', '--quiet', 'HEAD'], true);
|
const output = await this.execGit(['rev-parse', '--symbolic-full-name', '--verify', '--quiet', 'HEAD'], true);
|
||||||
return !output.stdout.trim().startsWith('refs/heads/');
|
return !output.stdout.trim().startsWith('refs/heads/');
|
||||||
}
|
}
|
||||||
|
async lfsCheckout() {
|
||||||
|
await this.execGit(['lfs', 'checkout']);
|
||||||
|
}
|
||||||
async lfsFetch(ref) {
|
async lfsFetch(ref) {
|
||||||
const args = ['lfs', 'fetch', 'origin', ref];
|
const args = ['lfs', 'fetch', 'origin', ref];
|
||||||
const that = this;
|
const that = this;
|
||||||
|
|
@ -41879,6 +41882,12 @@ async function getSource(settings) {
|
||||||
startGroup('Checking out the ref');
|
startGroup('Checking out the ref');
|
||||||
await git.checkout(checkoutInfo.ref, checkoutInfo.startPoint);
|
await git.checkout(checkoutInfo.ref, checkoutInfo.startPoint);
|
||||||
endGroup();
|
endGroup();
|
||||||
|
// LFS checkout
|
||||||
|
if (settings.lfs && !settings.sparseCheckout) {
|
||||||
|
startGroup('Checking out LFS objects');
|
||||||
|
await git.lfsCheckout();
|
||||||
|
endGroup();
|
||||||
|
}
|
||||||
// Submodules
|
// Submodules
|
||||||
if (settings.submodules) {
|
if (settings.submodules) {
|
||||||
// Temporarily override global config
|
// Temporarily override global config
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue