mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-05 10:12:55 +01:00
Update dist folder
This commit is contained in:
parent
114965806a
commit
a89dcfa06d
2 changed files with 6 additions and 4 deletions
5
dist/restore/index.js
vendored
5
dist/restore/index.js
vendored
|
@ -36963,8 +36963,9 @@ function getInputAsArray(name, options) {
|
|||
return core
|
||||
.getInput(name, options)
|
||||
.split("\n")
|
||||
.map(s => s.trim())
|
||||
.filter(x => x !== "");
|
||||
.map(s => s.replace(/^\!\s+/, '!').trim())
|
||||
.filter(x => x !== "")
|
||||
.sort();
|
||||
}
|
||||
exports.getInputAsArray = getInputAsArray;
|
||||
function getInputAsInt(name, options) {
|
||||
|
|
5
dist/save/index.js
vendored
5
dist/save/index.js
vendored
|
@ -36963,8 +36963,9 @@ function getInputAsArray(name, options) {
|
|||
return core
|
||||
.getInput(name, options)
|
||||
.split("\n")
|
||||
.map(s => s.trim())
|
||||
.filter(x => x !== "");
|
||||
.map(s => s.replace(/^\!\s+/, '!').trim())
|
||||
.filter(x => x !== "")
|
||||
.sort();
|
||||
}
|
||||
exports.getInputAsArray = getInputAsArray;
|
||||
function getInputAsInt(name, options) {
|
||||
|
|
Loading…
Reference in a new issue