Skip to content

Commit 6227760

Browse files
committed
chore: write cwd
1 parent 28750f1 commit 6227760

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/comment-diffs.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -267,10 +267,6 @@ jobs:
267267
run: |
268268
if ls outputs/*.txt; then
269269
result=1 # Artifacts are not empty
270-
echo "ARTIFACTS<<EOF" >> $GITHUB_OUTPUT
271-
cat outputs/*.txt >> $GITHUB_OUTPUT
272-
echo "EOF" >> $GITHUB_OUTPUT
273-
274270
else
275271
result=0 # Artifacts are empty
276272
fi
@@ -283,6 +279,12 @@ jobs:
283279
with:
284280
github-token: ${{secrets.GITHUB_TOKEN}}
285281
script: |
282+
const fs = require('fs');
283+
284+
fs.readdirSync('./outputs').forEach(file => {
285+
console.log(file);
286+
});
287+
286288
const replaceTable = {
287289
"module-legacy": "Native module",
288290
"module-mixed": "Turbo module with backward compat",

0 commit comments

Comments
 (0)