mirror of
https://github.com/Swatinem/rust-cache
synced 2025-04-05 21:24:07 +00:00
parent
b894d59a8d
commit
ecee04e7b3
|
@ -53,6 +53,12 @@ sensible defaults.
|
||||||
# Determines if the cache should be saved even when the workflow has failed.
|
# Determines if the cache should be saved even when the workflow has failed.
|
||||||
# default: "false"
|
# default: "false"
|
||||||
cache-on-failure: ""
|
cache-on-failure: ""
|
||||||
|
|
||||||
|
# Determiners whether the cache should be saved.
|
||||||
|
# If `false`, the cache is only restored.
|
||||||
|
# Useful for jobs where the matrix is additive e.g. additional Cargo features.
|
||||||
|
# default: "true"
|
||||||
|
save-if: ""
|
||||||
```
|
```
|
||||||
|
|
||||||
Further examples are available in the [.github/workflows](./.github/workflows/) directory.
|
Further examples are available in the [.github/workflows](./.github/workflows/) directory.
|
||||||
|
|
|
@ -28,6 +28,10 @@ inputs:
|
||||||
cache-on-failure:
|
cache-on-failure:
|
||||||
description: "Cache even if the build fails. Defaults to false."
|
description: "Cache even if the build fails. Defaults to false."
|
||||||
required: false
|
required: false
|
||||||
|
save-if:
|
||||||
|
description: "Determiners whether the cache should be saved. If `false`, the cache is only restored."
|
||||||
|
required: false
|
||||||
|
default: "true"
|
||||||
outputs:
|
outputs:
|
||||||
cache-hit:
|
cache-hit:
|
||||||
description: "A boolean value that indicates an exact match was found."
|
description: "A boolean value that indicates an exact match was found."
|
||||||
|
|
|
@ -13,7 +13,9 @@ process.on("uncaughtException", (e) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
async function run() {
|
async function run() {
|
||||||
if (!cache.isFeatureAvailable()) {
|
const save = core.getInput("save-if").toLowerCase() || "true";
|
||||||
|
|
||||||
|
if (!(cache.isFeatureAvailable() && save === "true")) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue