Skip to content

Commit

Permalink
Use of nameRegExp not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Apr 13, 2023
1 parent a2d4de0 commit 5836e58
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ async function main() {
const path = core.getInput("path", { required: true })
const name = core.getInput("name")
const nameIsRegExp = core.getBooleanInput("name_is_regexp")
const nameRegExp = nameIsRegExp ? new RegExp(name) : null
const skipUnpack = core.getBooleanInput("skip_unpack")
const ifNoArtifactFound = core.getInput("if_no_artifact_found")
let workflow = core.getInput("workflow")
Expand Down

0 comments on commit 5836e58

Please sign in to comment.