From 74d2657c31bf1f4c5bc80fa2e4023090c31a3ab8 Mon Sep 17 00:00:00 2001 From: peter-evans <18365890+peter-evans@users.noreply.github.com> Date: Wed, 18 Sep 2024 17:30:57 +0000 Subject: [PATCH] [CI] test built --- dist/index.js | 8 +++++++- report.txt | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 report.txt diff --git a/dist/index.js b/dist/index.js index 5905299..5f84df9 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1781,7 +1781,13 @@ function readFile(path) { return fs.readFileSync(path, 'utf-8'); } function readFileBase64(pathParts) { - return fs.readFileSync(path.resolve(...pathParts)).toString('base64'); + const resolvedPath = path.resolve(...pathParts); + if (fs.lstatSync(resolvedPath).isSymbolicLink()) { + return fs + .readlinkSync(resolvedPath, { encoding: 'buffer' }) + .toString('base64'); + } + return fs.readFileSync(resolvedPath).toString('base64'); } /* eslint-disable @typescript-eslint/no-explicit-any */ function hasErrorCode(error) { diff --git a/report.txt b/report.txt new file mode 100644 index 0000000..34828d4 --- /dev/null +++ b/report.txt @@ -0,0 +1 @@ +1726680656