mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-06-07 14:50:24 +02:00
Small improvements
This commit is contained in:
parent
a5631aba37
commit
64ae8e04f8
5 changed files with 10 additions and 15 deletions
|
@ -44,7 +44,7 @@ async function restoreImpl(
|
|||
);
|
||||
|
||||
if (!cacheKey) {
|
||||
if (core.getBooleanInput(Inputs.FailOnCacheMiss) == true) {
|
||||
if (core.getBooleanInput(Inputs.FailOnCacheMiss)) {
|
||||
throw new Error(
|
||||
`Failed to restore cache entry. Exiting as fail-on-cache-miss is set. Input key: ${primaryKey}`
|
||||
);
|
||||
|
@ -68,10 +68,7 @@ async function restoreImpl(
|
|||
);
|
||||
|
||||
core.setOutput(Outputs.CacheHit, isExactKeyMatch.toString());
|
||||
if (
|
||||
!isExactKeyMatch &&
|
||||
core.getBooleanInput(Inputs.FailOnCacheMiss) == true
|
||||
) {
|
||||
if (!isExactKeyMatch && core.getBooleanInput(Inputs.FailOnCacheMiss)) {
|
||||
throw new Error(
|
||||
`Restored cache key doesn't match the given input key. Exiting as fail-on-cache-miss is set. Input key: ${primaryKey}`
|
||||
);
|
||||
|
|
|
@ -14,7 +14,7 @@ interface CacheInput {
|
|||
key: string;
|
||||
restoreKeys?: string[];
|
||||
enableCrossOsArchive?: boolean;
|
||||
failOnCacheMiss?: boolean;
|
||||
failOnCacheMiss?: string;
|
||||
}
|
||||
|
||||
export function setInputs(input: CacheInput): void {
|
||||
|
@ -29,7 +29,7 @@ export function setInputs(input: CacheInput): void {
|
|||
input.enableCrossOsArchive.toString()
|
||||
);
|
||||
input.failOnCacheMiss &&
|
||||
setInput(Inputs.FailOnCacheMiss, String(input.failOnCacheMiss));
|
||||
setInput(Inputs.FailOnCacheMiss, input.failOnCacheMiss);
|
||||
}
|
||||
|
||||
export function clearInputs(): void {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue