Skip to content

Commit

Permalink
chore: regenerate artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
wraith-ci[bot] committed Dec 20, 2023
1 parent 4e90cae commit a21c5e4
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions packages/action/dist/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -34358,11 +34358,14 @@ var updateReadmeList = async ({
var import_promises6 = require("node:fs/promises");
var import_node_path4 = __toESM(require("node:path"), 1);
var listWorkflowFiles = async () => {
const dirPath = ".github/workflows";
const dir = await (0, import_promises6.readdir)(dirPath, {
withFileTypes: true,
recursive: true
});
const dirPath = import_node_path4.default.join(process.cwd(), ".github/workflows");
const dir = await attempt(
() => (0, import_promises6.readdir)(dirPath, {
withFileTypes: true,
recursive: true
}),
[]
);
const result = dir.filter((dirent) => dirent.isFile()).map(async (file) => {
const filepath = import_node_path4.default.join(dirPath, file.name);
const data = await (0, import_promises6.readFile)(filepath, "utf-8");
Expand Down

0 comments on commit a21c5e4

Please sign in to comment.