This commit is contained in:
Ryan Cao
2023-07-18 22:27:25 +08:00
parent b673daf32f
commit 6e24bce2f4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -3,7 +3,7 @@ import { exec } from "@actions/exec";
export const push = async () => {
const cache = getInput("cache");
const paths = getMultilineInput("token");
const paths = getMultilineInput("paths");
await exec("attic", ["push", cache, ...paths]);
};