1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-03 21:17:47 +02:00

Trying with inputs

This commit is contained in:
Sankalp Kotewar 2022-11-21 13:47:05 +00:00 committed by GitHub
parent f17d1159c8
commit 1cbab03e0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

View file

@ -18,7 +18,7 @@ inputs:
description: 'Fail the workflow if the cache is not found for the given key.'
required: false
default: "false"
save-cache-on-any-failure:
saveCacheOnAnyFailure:
description: 'Save build cache despite of failure in the job'
default: 'no'
outputs:
@ -28,7 +28,7 @@ runs:
using: 'node16'
main: 'dist/restore/index.js'
post: 'dist/save/index.js'
post-if: success() || env.INPUT_SAVE-CACHE-ON-ANY-FAILURE == 'yes'
post-if: (success() || (env.INPUT_SAVECACHEONANYFAILURE == 'yes'))
branding:
icon: 'archive'
color: 'gray-dark'

View file

@ -4948,7 +4948,7 @@ var Inputs;
Inputs["RestoreKeys"] = "restore-keys";
Inputs["UploadChunkSize"] = "upload-chunk-size";
Inputs["StrictRestore"] = "strict-restore";
Inputs["SaveCacheOnAnyFailure"] = "save-cache-on-any-failure";
Inputs["SaveCacheOnAnyFailure"] = "saveCacheOnAnyFailure";
})(Inputs = exports.Inputs || (exports.Inputs = {}));
var Outputs;
(function (Outputs) {
@ -48991,7 +48991,7 @@ function run() {
const saveCache = core.getInput(constants_1.Inputs.SaveCacheOnAnyFailure);
if (saveCache === "yes") {
core.saveState(constants_1.State.SaveCache, saveCache);
core.info(`Input save-cache-on-any-failure is set to yes, the cache will be saved despite of any failure in the build.`);
core.info(`Input saveCacheOnAnyFailure is set to yes, the cache will be saved despite of any failure in the build.`);
core.info(core.getState(constants_1.State.SaveCache));
core.info(core.getState(constants_1.State.CachePrimaryKey));
}

2
dist/save/index.js vendored
View file

@ -4948,7 +4948,7 @@ var Inputs;
Inputs["RestoreKeys"] = "restore-keys";
Inputs["UploadChunkSize"] = "upload-chunk-size";
Inputs["StrictRestore"] = "strict-restore";
Inputs["SaveCacheOnAnyFailure"] = "save-cache-on-any-failure";
Inputs["SaveCacheOnAnyFailure"] = "saveCacheOnAnyFailure";
})(Inputs = exports.Inputs || (exports.Inputs = {}));
var Outputs;
(function (Outputs) {

View file

@ -4,7 +4,7 @@ export enum Inputs {
RestoreKeys = "restore-keys",
UploadChunkSize = "upload-chunk-size",
StrictRestore = "strict-restore",
SaveCacheOnAnyFailure = "save-cache-on-any-failure"
SaveCacheOnAnyFailure = "saveCacheOnAnyFailure"
}
export enum Outputs {

View file

@ -40,7 +40,7 @@ async function run(): Promise<void> {
if (saveCache === "yes") {
core.saveState(State.SaveCache, saveCache);
core.info(
`Input save-cache-on-any-failure is set to yes, the cache will be saved despite of any failure in the build.`
`Input saveCacheOnAnyFailure is set to yes, the cache will be saved despite of any failure in the build.`
);
core.info(core.getState(State.SaveCache));
core.info(core.getState(State.CachePrimaryKey));