1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-04 13:37:46 +02:00

Add option to skip uploading of cache

This commit is contained in:
Edoardo Pirovano 2022-08-09 15:11:47 +01:00
parent f4278025ab
commit 015084af58
No known key found for this signature in database
GPG key ID: 047556B5D93FFE28
5 changed files with 17 additions and 1 deletions

View file

@ -14,6 +14,10 @@ inputs:
upload-chunk-size:
description: 'The chunk size used to split up large files during upload, in bytes'
required: false
skip-upload:
description: 'Set this to true to skip uploading the cache at the end even if we got a miss'
required: false
default: 'false'
outputs:
cache-hit:
description: 'A boolean value to indicate an exact match was found for the primary key'

View file

@ -4616,6 +4616,7 @@ var Inputs;
Inputs["Path"] = "path";
Inputs["RestoreKeys"] = "restore-keys";
Inputs["UploadChunkSize"] = "upload-chunk-size";
Inputs["SkipUpload"] = "skip-upload";
})(Inputs = exports.Inputs || (exports.Inputs = {}));
var Outputs;
(function (Outputs) {

4
dist/save/index.js vendored
View file

@ -4616,6 +4616,7 @@ var Inputs;
Inputs["Path"] = "path";
Inputs["RestoreKeys"] = "restore-keys";
Inputs["UploadChunkSize"] = "upload-chunk-size";
Inputs["SkipUpload"] = "skip-upload";
})(Inputs = exports.Inputs || (exports.Inputs = {}));
var Outputs;
(function (Outputs) {
@ -46795,6 +46796,9 @@ function run() {
core.info(`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`);
return;
}
if (core.getBooleanInput(constants_1.Inputs.SkipUpload)) {
core.info(`Skipping upload of cache since the skip-upload input was set.`);
}
const cachePaths = utils.getInputAsArray(constants_1.Inputs.Path, {
required: true
});

View file

@ -2,7 +2,8 @@ export enum Inputs {
Key = "key",
Path = "path",
RestoreKeys = "restore-keys",
UploadChunkSize = "upload-chunk-size"
UploadChunkSize = "upload-chunk-size",
SkipUpload = "skip-upload"
}
export enum Outputs {

View file

@ -40,6 +40,12 @@ async function run(): Promise<void> {
return;
}
if (core.getBooleanInput(Inputs.SkipUpload)) {
core.info(
`Skipping upload of cache since the skip-upload input was set.`
);
}
const cachePaths = utils.getInputAsArray(Inputs.Path, {
required: true
});