mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-04-03 21:17:47 +02:00
.
This commit is contained in:
parent
be4a8ea450
commit
a4544c13dd
2 changed files with 2 additions and 2 deletions
2
dist/restore/index.js
vendored
2
dist/restore/index.js
vendored
|
@ -48991,7 +48991,7 @@ function run() {
|
|||
});
|
||||
const cacheKey = yield cache.restoreCache(cachePaths, primaryKey, restoreKeys);
|
||||
//Check if user wants to save cache despite of failure in any previous job
|
||||
const saveCache = process.env[constants_1.Inputs.SaveCacheOnAnyFailure];
|
||||
const saveCache = core.getInput(constants_1.Inputs.SaveCacheOnAnyFailure);
|
||||
if (saveCache === "yes") {
|
||||
core.debug(`save cache input variable is set to yes`);
|
||||
core.exportVariable(constants_1.Variables.SaveCacheOnAnyFailure, saveCache);
|
||||
|
|
|
@ -36,7 +36,7 @@ async function run(): Promise<void> {
|
|||
);
|
||||
|
||||
//Check if user wants to save cache despite of failure in any previous job
|
||||
const saveCache = process.env[Inputs.SaveCacheOnAnyFailure];
|
||||
const saveCache = core.getInput(Inputs.SaveCacheOnAnyFailure);
|
||||
if (saveCache === "yes") {
|
||||
core.debug(`save cache input variable is set to yes`);
|
||||
core.exportVariable(Variables.SaveCacheOnAnyFailure, saveCache);
|
||||
|
|
Loading…
Add table
Reference in a new issue