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

build and commit dist

This commit is contained in:
Matt Johnson-Pint 2022-11-26 09:39:57 -08:00
parent 1bd6a2275b
commit 1001c07830
No known key found for this signature in database
GPG key ID: FC13C394A988CF1D
2 changed files with 15 additions and 5 deletions

View file

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

13
dist/save/index.js vendored
View file

@ -4947,6 +4947,7 @@ var Inputs;
Inputs["Path"] = "path";
Inputs["RestoreKeys"] = "restore-keys";
Inputs["UploadChunkSize"] = "upload-chunk-size";
Inputs["ReevaluateKey"] = "reevaluate-key";
})(Inputs = exports.Inputs || (exports.Inputs = {}));
var Outputs;
(function (Outputs) {
@ -47287,6 +47288,7 @@ const utils = __importStar(__webpack_require__(443));
// throw an uncaught exception. Instead of failing this action, just warn.
process.on("uncaughtException", e => utils.logWarning(e.message));
function run() {
var _a;
return __awaiter(this, void 0, void 0, function* () {
try {
if (!utils.isCacheFeatureAvailable()) {
@ -47297,12 +47299,19 @@ function run() {
return;
}
const state = utils.getCacheState();
// Inputs are re-evaluted before the post action, so we want the original key used for restore
const primaryKey = core.getState(constants_1.State.CachePrimaryKey);
let primaryKey;
if (((_a = core.getInput(constants_1.Inputs.ReevaluateKey)) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === "true") {
// Inputs are re-evaluated before the post action
primaryKey = core.getInput(constants_1.Inputs.Key);
}
else {
// Get the original key used for restore from the cache
primaryKey = core.getState(constants_1.State.CachePrimaryKey);
if (!primaryKey) {
utils.logWarning(`Error retrieving key from state.`);
return;
}
}
if (utils.isExactKeyMatch(primaryKey, state)) {
core.info(`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`);
return;