mirror of
https://github.com/actions/checkout.git
synced 2024-11-10 04:18:26 +08:00
build
This commit is contained in:
parent
1f57fc5a0b
commit
bfd0d500ee
|
@ -62,6 +62,10 @@ Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous
|
|||
# Whether to download Git-LFS files
|
||||
# Default: false
|
||||
lfs: ''
|
||||
|
||||
# Whether to silent failure
|
||||
# Default: false
|
||||
silentFailure: ''
|
||||
```
|
||||
<!-- end usage -->
|
||||
|
||||
|
|
16
dist/index.js
vendored
16
dist/index.js
vendored
|
@ -2611,7 +2611,18 @@ function run() {
|
|||
// Register problem matcher
|
||||
coreCommand.issueCommand('add-matcher', {}, path.join(__dirname, 'problem-matcher.json'));
|
||||
// Get sources
|
||||
yield gitSourceProvider.getSource(sourceSettings);
|
||||
try {
|
||||
yield gitSourceProvider.getSource(sourceSettings);
|
||||
}
|
||||
catch (error) {
|
||||
core.setOutput('failure', 'true');
|
||||
if (sourceSettings.silentFailure) {
|
||||
core.info(`Silent Failure: ${error.message}`);
|
||||
}
|
||||
else {
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
}
|
||||
finally {
|
||||
// Unregister problem matcher
|
||||
|
@ -10405,6 +10416,9 @@ function getInputs() {
|
|||
core.debug(`lfs = ${result.lfs}`);
|
||||
// Access token
|
||||
result.accessToken = core.getInput('token');
|
||||
// Silent Failure
|
||||
result.silentFailure =
|
||||
(core.getInput('silentFailure') || 'false').toUpperCase() === 'TRUE';
|
||||
return result;
|
||||
}
|
||||
exports.getInputs = getInputs;
|
||||
|
|
Loading…
Reference in New Issue
Block a user