We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44a26cc commit d52924aCopy full SHA for d52924a
index.js
@@ -8,7 +8,7 @@ async function setOutputs(files) {
8
pathsChanged.push(file.filename.split("/").slice(0, -1).join("/"))
9
filesChanged.push(file.filename)
10
})
11
- core.setOutput("paths_changed", JSON.stringify(pathsChanged))
+ core.setOutput("paths_changed", JSON.stringify([...new Set(pathsChanged)]))
12
core.setOutput("file_changed", JSON.stringify(filesChanged))
13
}
14
0 commit comments