mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-04-04 13:37:46 +02:00
.
This commit is contained in:
parent
a781be7251
commit
be4a8ea450
2 changed files with 2 additions and 0 deletions
1
dist/restore/index.js
vendored
1
dist/restore/index.js
vendored
|
@ -48993,6 +48993,7 @@ function run() {
|
||||||
//Check if user wants to save cache despite of failure in any previous job
|
//Check if user wants to save cache despite of failure in any previous job
|
||||||
const saveCache = process.env[constants_1.Inputs.SaveCacheOnAnyFailure];
|
const saveCache = process.env[constants_1.Inputs.SaveCacheOnAnyFailure];
|
||||||
if (saveCache === "yes") {
|
if (saveCache === "yes") {
|
||||||
|
core.debug(`save cache input variable is set to yes`);
|
||||||
core.exportVariable(constants_1.Variables.SaveCacheOnAnyFailure, saveCache);
|
core.exportVariable(constants_1.Variables.SaveCacheOnAnyFailure, saveCache);
|
||||||
core.info(`Input Variable ${constants_1.Variables.SaveCacheOnAnyFailure} is set to yes, the cache will be saved despite of any failure in the build.`);
|
core.info(`Input Variable ${constants_1.Variables.SaveCacheOnAnyFailure} is set to yes, the cache will be saved despite of any failure in the build.`);
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,6 +38,7 @@ async function run(): Promise<void> {
|
||||||
//Check if user wants to save cache despite of failure in any previous job
|
//Check if user wants to save cache despite of failure in any previous job
|
||||||
const saveCache = process.env[Inputs.SaveCacheOnAnyFailure];
|
const saveCache = process.env[Inputs.SaveCacheOnAnyFailure];
|
||||||
if (saveCache === "yes") {
|
if (saveCache === "yes") {
|
||||||
|
core.debug(`save cache input variable is set to yes`);
|
||||||
core.exportVariable(Variables.SaveCacheOnAnyFailure, saveCache);
|
core.exportVariable(Variables.SaveCacheOnAnyFailure, saveCache);
|
||||||
core.info(
|
core.info(
|
||||||
`Input Variable ${Variables.SaveCacheOnAnyFailure} is set to yes, the cache will be saved despite of any failure in the build.`
|
`Input Variable ${Variables.SaveCacheOnAnyFailure} is set to yes, the cache will be saved despite of any failure in the build.`
|
||||||
|
|
Loading…
Add table
Reference in a new issue