Skip to content

Commit

Permalink
workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ardittristan committed May 2, 2021
1 parent a0b135d commit ff11544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/get-inputs.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const rootFiles = fs.readdirSync("/");

const manifestJson = JSON.parse(fs.readFileSync("module.json", "utf8"));

const changelog = manifestJson.url + "/blob/master/" + rootFiles.filter((file) => file.toLowerCase().includes("changelog.md"))?.[0] || "CHANGELOG.md";
const changelog = manifestJson.url + "/blob/master/" + (rootFiles.filter((file) => file.toLowerCase().includes("changelog.md"))?.[0] || "CHANGELOG.md");
const compCore = manifestJson.compatibleCoreVersion;
const id = manifestJson.name;
const manifest = manifestJson.manifest;
Expand Down

0 comments on commit ff11544

Please sign in to comment.