Skip to content

Commit

Permalink
Fix reading inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrisbin committed Nov 1, 2023
1 parent 960f4a1 commit e295735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function getInputs(): Inputs {
const rawTimeout = core.getInput("timeout", { required: false });
const timeout = rawTimeout === "" ? expires : Duration.parse(rawTimeout);

const rawTimeoutPoll = core.getInput("timeout", { required: true });
const rawTimeoutPoll = core.getInput("timeout-poll", { required: true });
const timeoutPoll = Duration.parse(rawTimeoutPoll);

return { name, s3Bucket, s3Prefix, expires, timeout, timeoutPoll };
Expand Down

0 comments on commit e295735

Please sign in to comment.