mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-04-04 13:37:46 +02:00
Take input and update env var
This commit is contained in:
parent
133764e0c3
commit
a781be7251
5 changed files with 14 additions and 7 deletions
|
@ -18,6 +18,10 @@ inputs:
|
||||||
description: 'Fail the workflow if the cache is not found for the given key.'
|
description: 'Fail the workflow if the cache is not found for the given key.'
|
||||||
required: false
|
required: false
|
||||||
default: "false"
|
default: "false"
|
||||||
|
save-cache-on-any-failure:
|
||||||
|
description: 'Save cache despite of any failure in the build steps'
|
||||||
|
required: false
|
||||||
|
default: "no"
|
||||||
outputs:
|
outputs:
|
||||||
cache-hit:
|
cache-hit:
|
||||||
description: 'A boolean value to indicate an exact match was found for the primary key'
|
description: 'A boolean value to indicate an exact match was found for the primary key'
|
||||||
|
|
7
dist/restore/index.js
vendored
7
dist/restore/index.js
vendored
|
@ -4948,6 +4948,7 @@ var Inputs;
|
||||||
Inputs["RestoreKeys"] = "restore-keys";
|
Inputs["RestoreKeys"] = "restore-keys";
|
||||||
Inputs["UploadChunkSize"] = "upload-chunk-size";
|
Inputs["UploadChunkSize"] = "upload-chunk-size";
|
||||||
Inputs["StrictRestore"] = "strict-restore";
|
Inputs["StrictRestore"] = "strict-restore";
|
||||||
|
Inputs["SaveCacheOnAnyFailure"] = "save-cache-on-any-failure";
|
||||||
})(Inputs = exports.Inputs || (exports.Inputs = {}));
|
})(Inputs = exports.Inputs || (exports.Inputs = {}));
|
||||||
var Outputs;
|
var Outputs;
|
||||||
(function (Outputs) {
|
(function (Outputs) {
|
||||||
|
@ -48990,10 +48991,10 @@ function run() {
|
||||||
});
|
});
|
||||||
const cacheKey = yield cache.restoreCache(cachePaths, primaryKey, restoreKeys);
|
const cacheKey = yield cache.restoreCache(cachePaths, primaryKey, restoreKeys);
|
||||||
//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.Variables.SaveCacheOnAnyFailure];
|
const saveCache = process.env[constants_1.Inputs.SaveCacheOnAnyFailure];
|
||||||
if (saveCache === "yes") {
|
if (saveCache === "yes") {
|
||||||
// core.exportVariable(Variables.SaveCacheOnAnyFailure, saveCache);
|
core.exportVariable(constants_1.Variables.SaveCacheOnAnyFailure, saveCache);
|
||||||
core.info(`Environment 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.`);
|
||||||
}
|
}
|
||||||
if (!cacheKey) {
|
if (!cacheKey) {
|
||||||
if (core.getInput(constants_1.Inputs.StrictRestore) == "true") {
|
if (core.getInput(constants_1.Inputs.StrictRestore) == "true") {
|
||||||
|
|
1
dist/save/index.js
vendored
1
dist/save/index.js
vendored
|
@ -4948,6 +4948,7 @@ var Inputs;
|
||||||
Inputs["RestoreKeys"] = "restore-keys";
|
Inputs["RestoreKeys"] = "restore-keys";
|
||||||
Inputs["UploadChunkSize"] = "upload-chunk-size";
|
Inputs["UploadChunkSize"] = "upload-chunk-size";
|
||||||
Inputs["StrictRestore"] = "strict-restore";
|
Inputs["StrictRestore"] = "strict-restore";
|
||||||
|
Inputs["SaveCacheOnAnyFailure"] = "save-cache-on-any-failure";
|
||||||
})(Inputs = exports.Inputs || (exports.Inputs = {}));
|
})(Inputs = exports.Inputs || (exports.Inputs = {}));
|
||||||
var Outputs;
|
var Outputs;
|
||||||
(function (Outputs) {
|
(function (Outputs) {
|
||||||
|
|
|
@ -3,7 +3,8 @@ export enum Inputs {
|
||||||
Path = "path",
|
Path = "path",
|
||||||
RestoreKeys = "restore-keys",
|
RestoreKeys = "restore-keys",
|
||||||
UploadChunkSize = "upload-chunk-size",
|
UploadChunkSize = "upload-chunk-size",
|
||||||
StrictRestore = "strict-restore"
|
StrictRestore = "strict-restore",
|
||||||
|
SaveCacheOnAnyFailure = "save-cache-on-any-failure"
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum Outputs {
|
export enum Outputs {
|
||||||
|
|
|
@ -36,11 +36,11 @@ 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[Variables.SaveCacheOnAnyFailure];
|
const saveCache = process.env[Inputs.SaveCacheOnAnyFailure];
|
||||||
if (saveCache === "yes") {
|
if (saveCache === "yes") {
|
||||||
// core.exportVariable(Variables.SaveCacheOnAnyFailure, saveCache);
|
core.exportVariable(Variables.SaveCacheOnAnyFailure, saveCache);
|
||||||
core.info(
|
core.info(
|
||||||
`Environment 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