This commit is contained in:
Ryan Cao 2023-07-18 22:27:25 +08:00
parent b673daf32f
commit 6e24bce2f4
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

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]);
};